onSaveInstanceState () and onRestoreInstanceState ()

前端 未结 13 2335
孤城傲影
孤城傲影 2020-11-22 04:48

I\'m trying to save and restore the state of an Activity using the methods onSaveInstanceState() and onRestoreInstanceState().

13条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-22 05:30

    If you are handling activity's orientation changes with android:configChanges="orientation|screenSize" and onConfigurationChanged(Configuration newConfig), onRestoreInstanceState() will not be called.

提交回复
热议问题