0

我已经完成了相当多的研究,甚至使用了官方 Android API 建议的方法,但似乎没有任何效果。

我正在使用 ZBar 库运行 QR 码扫描仪应用程序,我似乎永远停留在一种方向模式:纵向。而且也只有一张特定的肖像;如果我尝试将平板电脑翻转 180 度,则生成的相机显示会颠倒。在横向时,显示器在其一侧,都指向原始纵向模式的位置。

我使用的代码如下:

public static void setCameraDisplayOrientation(Activity activity,
         int cameraId, android.hardware.Camera camera) {
     android.hardware.Camera.CameraInfo info =
             new android.hardware.Camera.CameraInfo();
     android.hardware.Camera.getCameraInfo(cameraId, info);
     int rotation = activity.getWindowManager().getDefaultDisplay()
             .getRotation();

     int degrees = 0;
     switch (rotation) {
         case Surface.ROTATION_0: degrees = 0; break;
         case Surface.ROTATION_90: degrees = 90; break;
         case Surface.ROTATION_180: degrees = 180; break;
         case Surface.ROTATION_270: degrees = 270; break;
     }

     int result;
     if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {
         result = (info.orientation + degrees) % 360;
         result = (360 - result) % 360;  // compensate the mirror
     } else {  // back-facing
         result = (info.orientation - degrees + 360) % 360;
     }
     camera.setDisplayOrientation(result);
 }

这是由 Google API 建议的。但是没有任何效果;.setDisplayOrientation() 什么都不做。有人有类似的问题吗?

4

0 回答 0