好的,我有一个程序(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
但我不知道从哪里开始。
这一切都可能吗?任何人都可以提供从这里去哪里的指导吗?