There are two Android applications calling each other: App1, App2.
steps:
start App1 from Android desk. -->
start startActivity(intent) or startActivityForResult(intent,0) to App2 from App1. -->
start startActivity(intent) or startActivityForResult(intent,0) again to App1 from App2. -->
start ( ? ) to go back to app1(activity) or App2.
I woud like make a dialog to let user to choice back to App1 or App2 in step 4. Is it possible to complete it ?
I have had tried the article here and it just back to the activity on App1 only.
Thanks for any suggestion !