标签:
1. 通过拿到当前的进程 id ,调用 shell 命令,杀死进程。
int pid = android.os.Process.myPid();
String command = "kill -9 "+ Process.myPid(); }
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);
android 应用 kill ,restart ,重启,方法
标签:
原文地址:http://blog.csdn.net/tianxuhong/article/details/42772875