当我试图退出时,我运行下面的代码,但我无法终止进度,
所以如果我重新启动我的应用程序,另一个进展开始了。这是怎么回事?
我的退出代码:
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();