android彻底关闭应用程序方法

Android SDK > 7(Android2.1)之后,即Android2.2及以后版本彻底关闭应用的方法,目前试验只有一下方法有效:

Intent startMain = new Intent(Intent.ACTION_MAIN);  
startMain.addCategory(Intent.CATEGORY_HOME);  
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  
startActivity(startMain);  
Process.killProcess(Process.myPid());

参考 https://www.cnblogs.com/zhujiabin/p/5675005.html 

原文地址:https://www.cnblogs.com/genggeng/p/8490233.html