Reputation: 1272
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
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