当前位置: 代码迷 >> Android >> android 完善退出应用程序
  详细解决方案

android 完善退出应用程序

热度:67   发布时间:2016-04-28 04:17:05.0
android 完美退出应用程序。
?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());
  相关解决方案