下面是摘自csdn论坛的一段代码
在 onclick里写下这段话即可:
int sdk_Version = android.os.Build.VERSION.SDK_INT; if (sdk_Version >= 8) { Intent startMain = new Intent(Intent.ACTION_MAIN); startMain.addCategory(Intent.CATEGORY_HOME); startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(startMain); System.exit(0); } else if (sdk_Version < 8) { ActivityManager activityMgr = (ActivityManager) getSystemService(ACTIVITY_SERVICE); activityMgr.restartPackage(getPackageName()); }