如何杀死Android的进展

时间:2012-07-19 08:45:21

标签: android kill progress

当我试图退出时,我运行下面的代码,但我无法取消进展,

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

我的退出代码:

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();

1 个答案:

答案 0 :(得分:0)

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

 finish();
        Intent intent = new Intent(Intent.ACTION_MAIN); 
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); 
        intent.addCategory(Intent.CATEGORY_HOME); 
        startActivity(intent);