My android app is opened from another app.
I know how to return results to activity,
But what happens when i need to return to the opening app?
Opening app (startActivityForResult) > my app > activity A > activity B > activity C > opening app.
Thanks,
Sharon.
My android app is opened from another app. I know how to return results
Share
You can either call
startActivity()on the opening app again to pass the results or callfinish()in each of the intermediate Activities’onActivityResult()methods to cascade the results back down to the opening app.