I have read up on the lifecycle of Activities but there is something I am not sure about. When launching a new activity, I use StartActvity and have a 'back' button on the new activity where I use Activity.Finish.
I have noticed that when going back to the calling activity only 'Resume' is fired, not 'Create' implying that the activity was not destroyed.
My question is - is it advisable to always use Activity.Finish on the first activity when starting a second one, thereby only having one activity 'live' at any given time? Or does this simply depend on the usage scenario
I have noticed that when going back to the calling activity only 'Resume' is fired, not 'Create' implying that the activity was not destroyed.
My question is - is it advisable to always use Activity.Finish on the first activity when starting a second one, thereby only having one activity 'live' at any given time? Or does this simply depend on the usage scenario