Android App fixed horizontal screen

There are many ways to fix the horizontal screen of the App, but some methods sometimes fail.

The ultimate big move:

@Override
public void setRequestedOrientation(int requestedOrientation) {
   super.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
}

Override the setRequestedOrientation method in Activity

Guess you like

Origin blog.csdn.net/Lwjobs/article/details/108140861