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:当用户触摸片段外部时,我如何关闭片段?

安卓。通过从片段中的按钮调用片段中的方法来关闭片段?

Android App 在片段中创建 ListView 引用时关闭

自动刷新android片段,直到满足条件

Android:如何在选项卡内从一个片段导航到另一个片段? [关闭]

手电筒片段 Android Studio