Mehrad Farahnak
Mehrad Farahnak

Reputation: 1272

how to close landscape mode just for normal layout?

I have an app which needs to close landscape mode just for normal layout and large layout has both landscape and portrait. how do I do that?

Upvotes: 5

Views: 81

Answers (1)

jitendra purohit
jitendra purohit

Reputation: 692

to disable landscape mode for an activity you can declare this line in manifest

<activity android:name=".YourActivity"
android:label="@string/name"
android:screenOrientation="portrait" />

Upvotes: 1

Related Questions