当前位置: 代码迷 >> Android >> android 应用 kill ,restart ,重新启动,方法
  详细解决方案

android 应用 kill ,restart ,重新启动,方法

热度:542   发布时间:2016-04-28 02:47:24.0
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);

6. 应用重启

                 ActivityManager am = (ActivityManager) mContext.getSystemService(mContext.ACTIVITY_SERVICE);
                 am.restartPackage("com.android.nfc");

  相关解决方案