Android setDisplayOrientation

时间:2013-08-06 08:54:41

标签: android camera rotation

我已经完成了公平的研究,我甚至使用了官方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()什么都不做。有人有类似的问题吗?

0 个答案:

没有答案