I build an app with screen orientation set to landscape in the manifest.
in activity;
android:screenOrientation="landscape"
I just realize when I lock my phone and then unlock it, orientation changed to portrait.
I try calling the
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
In onResume and onStart but It didn't work. Screen orientation is always portrait after unlocking the phone. What can I do for solving this, any ideas?