I have checked many question based on this but still I am not able to get it how to lock the screen orientation to landscape through out the app. ?
<activity android:screenOrientation="landscape"
android:name=".BasicLayoutCheckActivity"
/>
this is not working for me it comes back to potrait if another activity is used
In the Manifest, you can set the screenOrientation to
landscape for all the activities.You have placed for
one activityso other activities are opening in portrait, So forfixingsetall your activities with orientationas your first activity.It would look something like this in the XML: