我正在使用相机仅显示预览(不拍照或录制视频)。
应用程序始终处于纵向模式(禁用横向模式)。
相机预览始终旋转90度ccw,我无法更改它
(既不是setDisplayOrientation
也不是p.set("orientation", "portrait" )
和p.set("rotation", 90) )
。
预览总是像这样旋转还是取决于设备?如果在纵向模式下总是如此,我可以随后旋转图像。
或者有没有办法正确设置相机?我已经阅读了很多有关此问题的帖子,但没有答案对我有用(Galaxy s2,Android v2.3)
答案 0 :(得分:34)
强制纵向:
在android:screenOrientation="portrait"
设置AndroidManifest.xml
并在致电camera.setDisplayOrientation(90);
之前致电camera.startPreview();
我没有在GS2上测试过,但它适用于我测试的每部手机。
注意:在API Level 8
中添加了setDisplayOrientation答案 1 :(得分:7)
我只为纵向模式编写了应用程序。
camera.setDisplayOrientation(90);
将使相机旋转到90度,这可能导致Android中某些设备的方向不合适 为了获得所有Android设备的正确预览,请使用以下代码,这些代码在开发人员站点中被引用。
下面你必须发送你的活动,cameraId = back是0而前置摄像头是1
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;
//int currentapiVersion = android.os.Build.VERSION.SDK_INT;
// do something for phones running an SDK before lollipop
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);
}
这是如何设置相机的setDisplayOrientation,它将完美适用于所有Android设备。