Add android:screenOrientation="landspace" to the activity in the AndroidManifest.xml.
For example:
<activity android:name=".SomeActivity"
android:label="@string/app_name"
android:screenOrientation="landspace" />
in java:
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSPACE);
No comments:
Post a Comment