I\'m trying to save and restore the state of an Activity using the methods onSaveInstanceState() and onRestoreInstanceState().
Activity
onSaveInstanceState()
onRestoreInstanceState()
If you are handling activity's orientation changes with android:configChanges="orientation|screenSize" and onConfigurationChanged(Configuration newConfig), onRestoreInstanceState() will not be called.
android:configChanges="orientation|screenSize"
onConfigurationChanged(Configuration newConfig)