onSaveInstanceState () and onRestoreInstanceState ()

前端 未结 13 2347
孤城傲影
孤城傲影 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:43

    The state you save at onSaveInstanceState() is later available at onCreate() method invocation. So use onCreate (and its Bundle parameter) to restore state of your activity.

提交回复
热议问题