how to force an app into landscape only or portrait only? I want to app locked into the orientation of user choices.
Thanks a lot for sharing!!
how to force an app into landscape only or portrait only? I want to app locked into the orientation of user choices.
Thanks a lot for sharing!!
<activity android:name="Intro"
android:screenOrientation="portrait"
android:label="@string/app_name">
<intent-filter>
<action android:name="com.gmaninc.package.INTRO" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
one of the following in each activity in the manifest
android:screenOrientation="portrait"
android:screenOrientation="landscape"
Follow below steps to achieve what you wanted to do..
that's it..