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);

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。