David Elliott
David Elliott

Reputation: 113

How to disable screen rotation in Android?

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

Answers (1)

Ahmed Hegazy
Ahmed Hegazy

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

Related Questions