Android Activities UI Persistence
- by aandroid
I need to have two activities in an Android app that can be switched between each other with UI persistence as follows:
Activity A launches Activity B.
User triggers some UI changes in Activity B.
Activity B returns to Activity A (by a call to onBackPressed() or something similar)
Activity A re-launches Activity B.
I would like the changes made…