Android Disable Landscape Mode

[Solved] Android Disable Landscape Mode | Kotlin - Code Explorer | yomemimo.com
Question : android disable landscape mode

Answered by : daniele

<activity android:name=".SomeActivity" android:label="@string/app_name" android:screenOrientation="portrait" />

Source : | Last Update : Wed, 23 Sep 20

Question : disable portrait mode android

Answered by : harpreet-singh-r710vggw56ki

// add this in your manifest.xml
<activity android:name=".MainActivity"	<...other code> android:configChanges="orientation" //<--ADD THIS android:screenOrientation="portrait"> //<--ADD THIS

Source : | Last Update : Wed, 12 May 21

Question : How can I disable landscape mode in Android?

Answered by : belaid-nacereddine

<activity android:name=".SomeActivity" android:label="@string/app_name" android:screenOrientation="portrait" />

Source : https://androidandrey.com/howto/49/How-can-I-disable-landscape-mode-in-Android?#How-can-I-disable-landscape-mode-in-Android? | Last Update : Fri, 19 Aug 22

Answers related to android disable landscape mode

Code Explorer Popular Question For Kotlin