17

我使用相机仅显示预览(不拍照或录制视频)。

该应用程序始终处于纵向模式(禁用横向模式)。相机预览总是逆时针旋转 90 度,我无法更改它(无论是使用setDisplayOrientation还是使用p.set("orientation", "portrait" )and p.set("rotation", 90) ).

预览总是像这样旋转还是取决于设备?如果在纵向模式下总是这样,我可以在之后旋转图像。

或者有没有办法正确设置相机?我已经阅读了很多关于此的主题,但没有任何答案对我有用(Galaxy s2,Android v2.3)

4

2 回答 2

39

强制纵向:

设置android:screenOrientation="portrait"您的AndroidManifest.xml并在调用camera.setDisplayOrientation(90);之前调用camera.startPreview();

我没有在 GS2 上测试过,但它适用于我测试过的每部手机。

注意:setDisplayOrientation 是在API 级别 8中添加的

于 2012-05-19T04:17:10.690 回答
7

我只为肖像模式编写了应用程序。

camera.setDisplayOrientation(90);

将使相机旋转到 90 度,这可能导致 android 中某些设备的方向不合适为了获得所有 android 设备的正确预览,请使用以下代码,该代码在开发人员站点中被引用。

下面你必须发送你的活动,cameraId = back 是 0 并且 Front camera 是 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 设备。

于 2016-01-20T13:08:24.980 回答