0

I have an activity which I use to call another app using implicit intent. How do I get back to the original activity after running the called app for some amount of time?

2 Answers2

0

use StartActivityForResult(intent);

NIPHIN
  • 1,071
  • 1
  • 8
  • 16
  • Niphin, Thanks for your reply. But This another app is more like a game where I am just calling it using an implicit intent. How do I get the result back from the game since I cannot modify the game? – user3402454 Sep 24 '14 at 07:03
0

As far as i know, you won't be able to terminate the other app but here's something you can do

You can create a Service that contains a postDelayed Handler which starts the desired Activity you want.

Community
  • 1
  • 1
Abdallah Alaraby
  • 2,222
  • 2
  • 18
  • 30