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

来源:互联网 发布:iphone手机测评软件 编辑:程序博客网 时间:2024/06/09 15:37
有很多退出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());


0 0