1. 通过拿到当前的进程 id ,调用 shell 命令,杀死进程。
int pid = android.os.Process.myPid();
String command = "kill -9 "+ Process.myPid();
try {
Runtime.getRuntime().exec(command);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
2. 调用系统的方法 杀死进程,
android.os.Process.killProcess(android.os.Process.myPid());
3 . 获得包名,重启应用
ActivityManager am = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
am.restartPackage("com.android.nfc");
4. 调用系统的接口,退出应用。
System.exit(0);
5. 重启应用的activity
Intent k = mContext.getPackageManager()
.getLaunchIntentForPackage("com.android.nfc");
k.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
mContext.startActivity(k);
时间: 2024-11-05 11:41:47