我想在我的主屏幕活动后面的安装程序应用程序中启动一个活动,我使用以下方法调用它:
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
放在前台,我不想要那个。我想将我的应用程序主要活动保持在它之上。
我怎样才能做到这一点?