2

我正在尝试将 Android 活动的方向从纵向更改为横向。但它并没有改变为景观。

我在清单文件中提到的活动如下:

<activity
    android:name=".OpenFileActivity"
    android:label="@string/app_name"
    android:configChanges="orientation|keyboardHidden"
    android:exported="false">

但我不成功。谁能告诉我这是为什么?

4

2 回答 2

3

请检查您的手机设置是否启用了屏幕旋转。

于 2012-05-21T13:24:40.397 回答
1

你应该设置 android:screenOrientation="landscape"

来源:http: //developer.android.com/guide/topics/manifest/activity-element.html#screen

于 2012-05-21T13:24:06.807 回答