mominapk
mominapk

Reputation: 81

My app UI is not changing its orientation

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

Answers (1)

Ankit Kumar
Ankit Kumar

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

Related Questions