安卓:在纵向模式下相机预览方向(Android: Camera preview orientatio

2019-06-24 13:51发布

我使用的摄像头,显示预览只(不拍照或录制视频)。

该应用程序总是在肖像模式(风景模式被禁用)。 相机预览总是旋转90度逆时针,我不能把它(既不改变setDisplayOrientation也不符合p.set("orientation", "portrait" )p.set("rotation", 90) )

是预览一直转动,这样还是设备相关? 如果总是这样在纵向模式下,我可以旋转图像之后。

或者是有没有办法正确设置了摄像头? 我读过很多线程关于这个,但没有回答为我工作(银河S2,Android的V2.3)

Answer 1:

要强制纵向:

设置android:screenOrientation="portrait"AndroidManifest.xml并调用camera.setDisplayOrientation(90); 收到主叫camera.startPreview();

我没有对GS2测试,但它的每一个电话我已经测试过的作品上。

在加入setDisplayOrientation:注意API级别8



Answer 2:

我已经编码只肖像模式的应用程序。

camera.setDisplayOrientation(90);

将相机旋转到90度,这可能会导致不适合定位于Android的一些设备为了让所有的Android设备使用下面的代码,在开发者网站吹罚正确的预览。

下面,你必须把你的活动,cameraId =后面是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设备。



文章来源: Android: Camera preview orientation in portrait mode