我的整个Android相机应用程序处于纵向模式,所以当我打开相机时,我需要它以纵向模式自动打开。当我打开相机时,预览是侧面的。如何将相机预览设置为以纵向模式打开,以使预览看起来正确?
答案 0 :(得分:1)
您可以使用Android Developer文档中的此方法旋转相机预览。
public final void setDisplayOrientation(int degrees)
以度为单位设置预览显示的顺时针旋转。这个 影响预览帧和快照后显示的图片。 此方法对纵向模式应用程序很有用。注意 前置摄像头的预览显示之前水平翻转 旋转,即图像沿中心反射 相机传感器的垂直轴。因此用户可以将自己视为 照镜子。
private 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 = 0;
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);
}
我希望这会有所帮助。
答案 1 :(得分:0)
可能是因为您还没有指定screenRotation尝试:
android:screenOrientation="portrait"
或尝试以下方法:
在清单
中添加orientation属性android:screenOrientation=["unspecified" | "behind" |
"landscape" | "portrait" |
"reverseLandscape" | "reversePortrait" |
"sensorLandscape" | "sensorPortrait" |
"userLandscape" | "userPortrait" |
"sensor" | "fullSensor" | "nosensor" |
"user" | "fullUser" | "locked"]
So in your case it will be
<activity android:name=".yourCameractivity"
....
android:screenOrientation="portrait"/>