Android开发全程记录(六)——完美退出APP的方法

有很多退出app的方法在特定的应用里面可能是存在bug的,下面这种方法个人感觉很好用的,不知道大家还有没有更好的方法。
Intent intent = new Intent(Intent.ACTION_MAIN); 
                        intent.addCategory(Intent.CATEGORY_HOME); 
                        intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); 
                        startActivity(intent); 
                    android.os.Process.killProcess(android.os.Process.myPid());


你可能感兴趣的:(Android开发全程记录(六)——完美退出APP的方法)