我正在使用 Android 相机文档中的代码:
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);
}
在纵向模式下,我的一部手机(Samsung GT-S5660)将 info.orientation 报告为 0 并显示旋转 0,这使得预览进入横向模式。在另一部手机(HTC)上,这就像它应该的那样工作。在这种情况下,HTC 将 info.orientation 报告为 90。如果我手动将显示方向设置为 90,它也适用于三星。
那么问题来了:三星是提供虚假信息还是我做错了什么?