-2

Possible Duplicate:
Lock screen orientation (Android)

I want when my screen orientates, my screen stays vertical, because now my xml file looks so bad. So I want my screen continues to look like it was, not to orientate. Is it possible?

Community
  • 1
  • 1
ghostrider
  • 5,131
  • 14
  • 72
  • 120

3 Answers3

3

To keep your Activity in portrait mode you can add screen orientation in your XML.

<activity android:name=".MyActivity"
          android:screenOrientation="portrait"/>
tidbeck
  • 2,363
  • 24
  • 35
1

Add this to your activity's manifest:

<activity android:screenOrientation="portrait"/>
JoxTraex
  • 13,423
  • 6
  • 32
  • 45
1

add this to your activity

<activity android:name=".YourActivity"
    android:configChanges="orientation"
    android:screenOrientation="portrait"/>
confucius
  • 13,127
  • 10
  • 47
  • 66