I have all activities in portrait mode except the one that I use to play a video that is always landscape. I found that on Android 8.1 every time I open the video activity a
This fixed the issue.
Override the onBackPressed() method of Landscape activity and set orientation to Portrait.
@Override public void onBackPressed() { super.onBackPressed(); setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); }