Android - restore last viewed Activity

后端 未结 3 1492
深忆病人
深忆病人 2020-12-09 20:40

I have 3 different Activities that user navigates between in no particular order. My goal it twofold:

  1. When user switches to something else when app is resumed
3条回答
  •  遥遥无期
    2020-12-09 20:56

    I believe you want to implement onSaveInstanceState and that will store your activities current state in a bundle. That bundle will be passed into your activity in onCreate, and you can use it to reset your values.

    http://developer.android.com/guide/topics/fundamentals.html#actstate

提交回复
热议问题