Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我环顾四周,发现如何通过编辑 Manifest 文件将我的整个应用程序锁定到 Landscape。然而,这不是我想要的。
我希望每个活动都被锁定为纵向,除了一个将被锁定为横向的活动。
在您的清单文件中,找到您的 Activity 声明并使用以下内容:
<activity android:name=".ActivityName" android:label="@string/app_name" android:screenOrientation="landscape" > </activity>