如何为整个应用程序禁用横向模式

the*_*ole 1 android

我想为我的整个应用程序禁用横向模式.我希望能够在没有screenOrientation为我的清单中的每个活动设置肖像的情况下这样做.有可能用一个属性来做吗?

Nik*_*hil 5

简单地说,在清单文件中将android:screenOrientation添加到所有已定义的活动中.

<activity android:name=".YourActivity"
android:screenOrientation="portrait"/>
Run Code Online (Sandbox Code Playgroud)

它将使您的所有活动仅限于纵向模式.只需将screenOrientation添加到所有活动中即可.