我正在尝试将 Android 活动的方向从纵向更改为横向。但它并没有改变为景观。
我在清单文件中提到的活动如下:
<activity
android:name=".OpenFileActivity"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden"
android:exported="false">
但我不成功。谁能告诉我这是为什么?
我正在尝试将 Android 活动的方向从纵向更改为横向。但它并没有改变为景观。
我在清单文件中提到的活动如下:
<activity
android:name=".OpenFileActivity"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden"
android:exported="false">
但我不成功。谁能告诉我这是为什么?
请检查您的手机设置是否启用了屏幕旋转。
你应该设置 android:screenOrientation="landscape"
来源:http: //developer.android.com/guide/topics/manifest/activity-element.html#screen