in my application I have 3 activities. First one -the main from which I start activity #2. From #2 I start #3 and at the same time I finish #2. When I finish #3 I automatically come back to #1. Question: How can I add/run code when coming back from 3 to 1?
not sure if it makes sense. But what I want to do is, when ending #3 and coming back to #1 I want to check if file xyz exists and based on it to change UI in activity #1.
OnResume in #1 is not ran, never. (Probably system doesn't run onpause for this first activity)
If there was only activity #1 and 2 I could use startActivityForResult. But two activities don't do what I need...