Search code examples
androidportraitandroid-screen

Lock Android phone application to Portrait mode


Can someone tell me how to lock my application to a portrait mode? Is it a simple configuration in the manifest file?


Solution

  • Yes. Add android:screenOrientation="portrait" to the manifest under your main activity.

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