如何将屏幕设置为不旋转(android)? [复制]
Posted
技术标签:
【中文标题】如何将屏幕设置为不旋转(android)? [复制]【英文标题】:How to set the screen to not rotate (android)? [duplicate] 【发布时间】:2021-10-15 13:47:22 【问题描述】:我创建了一个 android 应用,它要求屏幕仅处于纵向模式。 在输入 IDE 时,仅显示此作为方向。
android:orientation="vertical"
上面的代码实际上在模拟器中工作。但是当我在物理设备上检查它时。即使使用该代码,该应用程序也会旋转到横向。我该如何解决?
我检查了 screenOrientation 没有工作。 提前致谢
【问题讨论】:
在清单中使用 android:screenOrientation="portrait" 进行活动 screenOrientation 也不起作用。 【参考方案1】:在清单中添加这一行 android:screenOrientation="portrait"
<activity
android:name=".LoginActivityKt"
android:screenOrientation="portrait"/>
例如:
【讨论】:
以上是关于如何将屏幕设置为不旋转(android)? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
如何framework层任意设置Android屏幕的旋转方向