lnpusong123

Results 2 comments of lnpusong123

![screenshot_2018-12-03-22-02-18-155_app openconnec](https://user-images.githubusercontent.com/16030258/49413122-d0d5b400-f7a9-11e8-9d9d-d53733575b17.png) 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...