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?
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?
To keep your Activity
in portrait mode you can add screen orientation in your XML.
<activity android:name=".MyActivity"
android:screenOrientation="portrait"/>
Add this to your activity's manifest:
<activity android:screenOrientation="portrait"/>
add this to your activity
<activity android:name=".YourActivity"
android:configChanges="orientation"
android:screenOrientation="portrait"/>