I hope you can help me understanding the Android Lifecycle and how I can manage navigation between several kinds if activities. Suppose the following scenario:
- Activity A "MainMenu" is started: User clicks on a menuentry
- Activity B is started and UI is loaded with content from local database
- user interacts with Activity B
- user presses Backbutton and returns to Activity A
- user presses again the same menuentry for returning to activity B
- At the moment: The activity is loaded from scratch
- Whished: The previous instance of Activity B with all its UI entries and User interactions should resume
I thought of saving all activities in a static manager. If a activity is started, the manager looks if it has already been started previously. If so, resume the previous activity else startActivity(ActivityA). Is that a good way of handling those navigations? How can I directly resume via code an instance of an activity? Or is there another way to do this in a better way?
Thanks in advance! greetings, faiko