小编典典

我希望我的 android 应用程序仅在纵向模式下运行?

all

我希望我的 android 应用程序仅在纵向模式下运行?我怎样才能做到这一点?


阅读 106

收藏
2022-03-22

共1个答案

小编典典

在清单中,为您的所有活动设置此项:

<activity android:name=".YourActivity"
    android:configChanges="orientation"
    android:screenOrientation="portrait"/>

让我解释:

  • 告诉Android android:configChanges="orientation",您将负责方向的变化。
  • android:screenOrientation="portrait"您设置默认方向模式。
2022-03-22