App Execution Flow

Hi

If i have an app that uses activity starter to perform a process outwith the control of my app will my app continue to process the next blocks/instructions or wait until the activity is completed ?

Thanks
Steve

Most probably wait until you return control to the app, though it may depend on what you are doing....

The activity is starting google maps navigation.
I wanted to switch screens to an alternative screen then back to screen1 to reinitialise screen1, if i put the change screen block immediately after the StartActivity block Google maps starts to load on screen then disappears as the change screen instruction resets the app to screen1.
But if I use clock to put a delay in there strangely the clock only seems to wait until the navigation has finished and then starts counting 5 seconds from when I return from google maps to my app.

Steve

Have you considered this:

I hadnt actually Google Maps seemed to be a better option as it looks familiar to users.
I moved the screen change to trigger on back button being pressed.

Thanks
Steve