2

我将手机置于“纵向模式”,但cameraPreview处于横向模式(即我看到旋转了 90 度的东西)。当我转动手机以将其保持在“横向模式”时,预览很好并且处于“横向模式”,图像没有旋转。我无权访问Camera.setDisplayOrientation(int),因此无法使用此处说明的方法。

我试过了:

Camera.Parameters p = camera.getParameters();
    if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT)
    {   
        p.set("orientation", "portrait");
        p.set("rotation",90);
    }
    if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE)
    {                               
        p.set("orientation", "landscape");          
        p.set("rotation", 90);
    }
4

3 回答 3

0

尝试使用以下方法设置相机的显示方向:

Camera camera;
...
camera.setDisplayOrientation(90);

放在surfaceCreated(SurfaceHolder holder)方法中。当我遇到类似问题时,这对我有用。

于 2013-02-11T14:34:08.097 回答
0

好的,所以我已经解决了问题在“surfaceCreated”方法中做

    Method rotateMethod;
    rotateMethod = android.hardware.Camera.class.getMethod("setDisplayOrientation", int.class);
    rotateMethod.invoke(camera, 90);

刚过

camera = Camera.open();

(cf:除非键盘打开,否则相机是错误的

于 2013-02-11T15:20:20.430 回答
0

在工作区项目的 AndroidManifest.xml Activity 中添加代码。

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:screenOrientation="landscape"
        android:theme="@android:style/Theme.NoTitleBar" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
于 2013-02-11T15:37:05.617 回答