I'm making an app which has a flow roughly as below:
- User starts on the main screen with an empty list, hits menu, and goes to "add item." (Activity A)
- User is given a new activity which allows them to specify search criteria, then hits "go" to do a search. (Activity B)
- User gets a list of results, and can click on one of them to view more details. (Activity C)
- User sees details of item, and can use a menu item to save it to their list in Activity A. (Activity D)
Right now, I am having each Activity call each other Activity for results, and then it is passing the result all the way back up the stack as it returns to Activity A. Is there a way to jump this, since all I want is for a result in Activity D to get to Activity A directly?
Note that a user should still be able to navigate backwards (using the back button) through each activity, but if they explicitly save the item in Activity D, I want it to jump straight to Activity A.