android彻底关闭应用程序方法
Posted 庚拓天下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于android彻底关闭应用程序方法的主要内容,如果未能解决你的问题,请参考以下文章
Android App 在片段中创建 ListView 引用时关闭