Suppose you are showing list of movies.
You are offering a filter (as a separate activity) (Filter window could be overlayed on top of the list of movies (not sure how I could do this in android)
Now user selects filters in the filter screen, and wants to apply the filter.
The filter data should be transfered from the filter activity to the previous activity (which shows the movie lists).
How can I pass the data in this scenario?
Should I use some kind of event system (such as NotificationCenter in ios)?
Or should I use some form of startActivity
even though the activity is already started and waiting.