Search code examples
androidinstanceonresume

Android onResume Show Previous state of Activity


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.


Solution

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