如何设置屏幕不旋转(android)?

How to set the screen to not rotate (android)?

我创建了一个 android 应用程序,它要求屏幕仅处于纵向模式。 在键入 IDE 时仅显示此方向。

android:orientation="vertical"

以上代码实际上在模拟器中有效。但是当我在物理设备上检查它时。即使使用该代码,该应用程序也会旋转到横向。我该如何解决?

我检查过 screenOrientation 是否不起作用。 提前致谢

在您的清单中添加这一行 android:screenOrientation="portrait"

<activity
    android:name=".LoginActivityKt"
    android:screenOrientation="portrait"/>

例如: