Tuesday, April 17, 2012

I want my android application to be only run in portrait mode?


I want my android application to be only run in portrait mode ? How to do that?



Source: Tips4all

2 comments:

  1. In the manifest, set this for all your activities:

    <activity android:name=".YourActivity"
    android:configChanges="orientation"
    android:screenOrientation="portrait"/>


    Let me explain:


    With android:configChanges="orientation" you tell Android that you will be responsible of the changes of orientation.
    android:screenOrientation="portrait" you set the default orientation mode.

    ReplyDelete
  2. In Android Manifest File, put attribute for your <activity> that android:screenOrientation="portrait"

    ReplyDelete