Saving Activity State in the onPause

不想你离开。 提交于 2019-11-29 01:23:19

As you have discovered, onSaveInstanceState is useful only in situations where you need to recreate the same so-called "instance" of the Activity after it has been destroyed by the OS, usually because it is too far in the back stack to stay alive under memory pressure.

Saving your data in onPause is indeed the way to go for persistence that lasts beyond a single execution of your Activity. To get this working, you have several options, including:

  • Shared Preferences
  • Files
  • Databases
  • Content Providers

I suggest reading this documentation to learn more about each of these options:

http://developer.android.com/guide/topics/data/data-storage.html

You can simply assign your variable foo to class member mFoo in onPause provided you also save mFoo in the state bundle in onSaveInstanceState. The same goes for the restore scenario.

If you choose to save the Activity state to Shared Preferences, you can check out the GNStateManager component of the library I wrote to make it easy to store and retrieve the required fields of the activity marked my @GNState annotation. It is dead simple to use. Other singleton class object states can be saved too. See here for Setup and Usage information: https://github.com/noxiouswinter/gnlib_android/wiki/gnstatemanager

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!