How can the landscape screen orientation be restricted in android?

android

Solution

Your question is very short, but I believe you are asking how to restrict an Activity's display to a specific orientation. To do so try using the `android:screenOrientation` in the `<Activity>` tag(s) in your Manifest file.

https://developer.android.com/guide/topics/manifest/activity-element.html#screen

Problem

How can the landscape screen orientation be restricted in android?

Original source