首页 > 代码库 > android 应用 kill ,restart ,重启,方法
android 应用 kill ,restart ,重启,方法
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);
android 应用 kill ,restart ,重启,方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。