سؤال

In my project I've several controls in my activity listView checkboxes and textboxes in several tabs now what i've seen when i press home key or recieve a call my activity put into pause and the control get reset (like listview will have to rebind & checkbox get unchecked) to prevent it i set saveEnabled = "true" but it does not work for listview Now i'll have to rebind my tabs again and fill the listview again

tell me is there any method which will save my current state and onResume will resume the previous one.

هل كانت مفيدة؟

المحلول

You should save your state in onPause() method and you can refresh your view in onResume()

نصائح أخرى

There is no such API to save the state of the activity. You yourself have to save the state using SharedPreferences or some other method in onPause() and retrieve the state in onResume().

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top