你怎么prevent被侧身Android的屏幕?你怎么、屏幕、prevent、Android

2023-09-06 22:03:34 作者:缺情缺爱缺流量

每当我打开设备侧身,一切都在我的应用程序也转身变得扭曲。我如何锁定它变成垂直?

Whenever I turn the device sideways, everything in my app also turns and becomes distorted. How do I lock it into vertical?

推荐答案

在你的的Andr​​oidManifest.xml 您的活动方向设置为纵向是这样的。

In your AndroidManifest.xml set the orientation on your Activity to portrait like this.

<activity android:name=".YourActivity"
    android:label="@string/app_name"
    android:screenOrientation="portrait">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>