i have an application that i'm testing on the HTC one X.
Brief description:
My main activity is a tabbed application (using fragments). In one of the tabs, i have a button that takes the user to another activity via
Intent myIntent = new Intent(view.getContext(), NoteActivity.class);
startActivity(myIntent);
All this works fine. But in the NoteActivity, i have a textfield, and if the screen lock turns on, the NoteActivity gets destroyed right away, and when the user unlocks, my "Main" activity is started right away.
Also, when i move from the mainactivity -> noteactivity, my mainactivity is never destroyed, but when i go back (when the user is done with the note and clicks on "save"), the noteactivity is always destroyed right away.
Apparently, i need to store away the textfield contents in ondestroy and re-insert it in oncreate, but i don't understand why my second activity is always destroyed when the screen lock activates? My main activity is never destroyed.
I'm a little bit unsure about why Android does these lifecycle decisions. If somebody has any input, i'd love to hear it.