Reputation: 81
When i press Keypad 7 and 9 my emulator orientation is changing but my app orientation is not changing. Although my app's orientation is changing on a real device. Why my app's orientation is not changing on emulator? I have tried editing the emulator settings and changing it to landscape but still my app's orientation is not changing but only emulator's orientation is changing.
Upvotes: 1
Views: 60
Reputation: 3723
<activity
android:name="your.package.name.MyActivity"
android:configChanges="orientation"
android:label="@string/app_name"/>
Mention this in your activity tag in manifest file
Upvotes: 1