我想知道如何保存页面状态(Activity),所以当我回到那个页面时,它应该处于我离开它的状态。 例如,如果我在页面中选中了一个复选框,那么当我回来后离开该页面时,应该在我离开时检查复选框。 提前谢谢
答案 0 :(得分:1)
http://mobile.tutsplus.com/tutorials/android/android-application-preferences/
请参阅本教程关于SharedPreferences
或
http://developer.android.com/reference/android/content/SharedPreferences.html
答案 1 :(得分:0)
如果您正在讨论另一个Activity中断当前活动的情况,那么您应该考虑管理活动生命周期http://developer.android.com/guide/topics/fundamentals/activities.html#Lifecycle onSaveInstanceState(),onRestoreInstanceState()或onPause()和onResume()。
如果这是用于持久数据存储,则需要SharedPreferences / DB或其他形式的存储:http://developer.android.com/guide/topics/data/data-storage.html