メイン画面のアクティビティの背後にあるインストーラーアプリケーションにあるアクティビティを開始したいのですが、次を使用して呼び出します。
public class MYAPP extends Application {
public void onCreate() {
Intent intent = new Intent();
ComponentName cName = new ComponentName("com.example.installer",
"com.example.installer.MainActivity");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_ACTIVITY_PREVIOUS_IS_TOP);
intent.setComponent(cName);
startActivity(intent);
}
}
しかし、私MainActivity
はフォアグラウンドになり、それを望んでいません。アプリケーションのメインアクティビティをその上に保持したいと思います。
どうやってやるの?