9

Motorola Defy OS Android 2.1を使用しており、カメラプレビューを使用してアプリケーションを作成しています。問題は、Android2.1を搭載したSamsungGalaxy Sではカメラが正常に動作するが、Motorolaではカメラが90度回転することです。私はこれをやろうとしました:

Parameters parameters = camera.getParameters();
parameters.setRotation(90);

しかし、それは機能していません。私はまだ解決策を見つけられませんでした。

4

6 に答える 6

16
if (this.getResources().getConfiguration().orientation != Configuration.ORIENTATION_LANDSCAPE) {
        camera.setDisplayOrientation(90);
        lp.height = previewSurfaceHeight;
        lp.width = (int) (previewSurfaceHeight / aspect);
    } else {
        camera.setDisplayOrientation(0);
        lp.width = previewSurfaceWidth;
        lp.height = (int) (previewSurfaceWidth / aspect);
    }
于 2011-03-15T09:05:08.720 に答える
8

このための公式のサンプルコードがAndroidドキュメントにあります(setDisplayOrientation()の下):

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);
}
于 2012-08-22T10:10:16.647 に答える
2

camera.setDisplayOrientation(int)は2.1では存在しません!

そして、このコードは機能するかもしれませんが、私のマイルストーン/ドロイドでは失敗します:(

Camera.Parameters parameters = camera.getParameters();
parameters.set("orientation", "portrait");
camera.setParameters(parameters);

詳細については、 http://code.google.com/p/android/issues/detail ?id = 1193#c42をご覧ください。

于 2011-11-15T07:57:50.700 に答える
2

このコードはAndroid1.6以降で機能することがわかりました(2.1を使用して機能し、回転せずに縦向きモードでプレビューを表示します)

public void surfaceCreated(SurfaceHolder holder){
        try{
            camera = Camera.open();
            setDisplayOrientation(camera, 90);
            camera.setPreviewDisplay(holder);
            camera.startPreview();
        }catch(IOException e){
            Log.d("CAMERA", e.getMessage());
        }

}

protected void setDisplayOrientation(Camera camera, int angle){
        Method downPolymorphic;
        try
        {
            downPolymorphic = camera.getClass().getMethod("setDisplayOrientation", new Class[] { int.class });
            if (downPolymorphic != null)
                downPolymorphic.invoke(camera, new Object[] { angle });
        }
        catch (Exception e1)
        {
        }
}

アクティビティには、AndroidManifest.xmlにandroid:screenOrientation="portrait"があります

http://code.google.com/p/android/issues/detail?id=1193#c42

于 2012-03-31T13:23:27.190 に答える
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;
    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);
}
于 2013-12-09T16:07:32.043 に答える
0

API 2.2〜2.1に対応するための設定はできないと思います。APIは現在のデバイスライブラリにありません。APIレベル8をサポートするには、2.2に変更する必要があります。ちなみに、私はAPIレベル7も使用しようとしています。

Parameters parameters = camera.getParameters();
parameters.setRotation(90);

この機能はSamsungGalaxyTabでうまく機能しますが、Nexus1では機能します。Samsung GalaxyTabはOS2.2.0を使用し、NexusOneはOS2.2.1を使用します。APIレベル8を使おうとすると:

camera.setDisplayOrientation(90);

どちらもうまく機能します。そのため、Android OS 2.2.1で使用する場合、APIレベル7に問題があると思います。

于 2011-03-22T09:29:51.130 に答える