How To Disable Landscape Mode in Android Application


If you want to disable Landscape mode for your android app ( or a single activity) all you need to do is add, android:screenOrientation="portrait" to the activity tag in AndroidManifest.xml file.

Example :

<activity android:name="YourActivityName" 
    android:icon="@drawable/icon" 
    android:label="Your App Name" 
    android:screenOrientation="portrait">

Now the activity YourActivityName be displayed only in portrait mode.

If you want to do this programatically ie. using Java code. You can do so by adding the below code in the Java class of the activity that you don't want to be displayed in landscape mode.

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);







Author Info:

Rakesh (He/Him) has a Masters Degree in Computer Science with over 15+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org

Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap