I have an Activity A which is displayed in Portrait mode only, which will call an Activity B which can be displayed in Portrait or Landscape Mode.
If I open the activity B on Portrait Mode, and rotate the device, everything is displayed as expected. If I am on Activity A and rotate the device for Landscape Mode, the Activity A keeps its orientation (as expected), but the Activity B then is called and does not call onConfigurationChanged() (which i have my logic to display things in a different way).
In Manifest im already setting:
android:configChanges="orientation|screenSize"
How can I display everything in Landscape mode, if the app is already on Landscape Mode when calling onCreate()?