Reputation: 113
I'm trying to make it so the screen can't rotate when you turn it because it screws up some of the graphics. Is there a way to do this?
Upvotes: 1
Views: 1397
Reputation: 12605
Just Add android:screenOrientation="portrait"
to your <activity>
tag in the manifest to disable orientation.
You can also try to stop the activity from recreating itself when rotating by adding this
android:configChanges="orientation|screenSize|keyboardHidden"
to your <activity>
tag.
Upvotes: 2