How to change the activity orientation through java code in android?

By | February 11, 2012

Here is a simple way to change the orientation of the activity in android
Through java code we do this….

 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

Through xml we do this

<activity android:name=”.MainActivity”
           android:label=”@string/app_name”
           android:screenOrientation=”landscape” >
       <intent-filter>
          <action android:name=”android.intent.action.MAIN” />
          <category android:name=”android.intent.category.LAUNCHER” />
       </intent-filter>
</activity>

Following are two other values that you can specify in the android:screenOrientation attribute:

➤➤ portrait — Portrait mode
➤➤ sensor — Based on the accelerometer

Please leave your valuable comments.

Leave a Reply

Your email address will not be published. Required fields are marked *