I don't want to be in landscape mode in some views on my app, what should I do?
android orientation manifest
AndroidManifest.xml In addition to activities that you want to disable horizontal screen mode
<activity android:name=".SomeActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" />
Android:screenOrientation="portrait" You can add this.
© 2024 OneMinuteCode. All rights reserved.