1

当我试图退出时,我运行下面的代码,但我无法终止进度,

所以如果我重新启动我的应用程序,另一个进展开始了。这是怎么回事?

我的退出代码:

Intent startMain = new Intent(Intent.ACTION_MAIN);
    startMain.addCategory(Intent.CATEGORY_HOME);
    startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    startActivity(startMain);
    System.exit(0);
    finish();
4

1 回答 1

0

使用此代码结束您的应用程序

 finish();
        Intent intent = new Intent(Intent.ACTION_MAIN); 
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); 
        intent.addCategory(Intent.CATEGORY_HOME); 
        startActivity(intent);
于 2012-07-19T08:48:25.827 回答