从我的应用程序中运行另一个应用程序,但在该应用程序关闭后继续执行?

时间:2014-07-24 15:27:40

标签: android android-intent wait background-foreground

好的,我有一个程序(prog1)通过intent(prog2)打开另一个程序。我的目标是让prog1在prog2处于前台时不做任何事情。当prog2退出前台时,让prog1继续执行。

Handler handler = new Handler();
handler.postDelayed(new Runnable() {
    public void run() {
        Intent LaunchIntent = new Intent(Intent.ACTION_MAIN); 
        LaunchIntent = getPackageManager().getLaunchIntentForPackage("prog2");     
        startActivity(LaunchIntent);
    }}, 3000);  // 3 seconds

但我不知道从哪里开始。

这一切都可能吗?任何人都可以提供从这里去哪里的指导吗?

0 个答案:

没有答案