Advice on onPause and onResume

Oppornott

New Member
If i use the code below will this restore text that has been input into EditTextfields and selected spinner items?\[code\] @Override protected void onPause(){ super.onPause(); } @Override protected void onResume(){ super.onResume(); }\[/code\]or do I have to tell it to save the current values and then restore then when activity is resumed? when I am using the emulator if I don't have these methods in and I go to say home then run my app again it always loads back to the previous state, so my questions is does this actually do antyhing?
 
Top