lnpusong123
lnpusong123
 Hi, I encounter the same problem, I use the new artifacts in the sample app. In my home WiFi, it can connect, but I cannot access Internet. Anything...
@bruceyu1994 改这个文件com.uuzuche.lib_zxing.camera.CameraConfigurationManager中的setDesiredCameraParameters方法,作者好像写成固定旋转角度了。 https://github.com/yipianfengye/android-zxingLibrary/blob/master/lib-zxing/src/main/java/com/uuzuche/lib_zxing/camera/CameraConfigurationManager.java 将camera.setDisplayOrientation(90);改成 camera.setDisplayOrientation(getDisplayOrientation()); public int getDisplayOrientation() { Camera.CameraInfo info = new Camera.CameraInfo(); Camera.getCameraInfo(Camera.CameraInfo.CAMERA_FACING_BACK, info); WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE); Display display = wm.getDefaultDisplay(); int rotation = display.getRotation(); int...