Android实现关机、重启设备

 

1、关机

方法一:关机属于系统级操作,所以需要获得系统级的权限。

  android:sharedUserId="android.uid.system"

  Intent intent = new Intent("android.intent.action.ACTION_REQUEST_SHUTDOWN");
        intent.putExtra("android.intent.extra.KEY_CONFIRM", false);
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        this.startActivity(intent);

方法二、以管理员身份运行命令

    Runtime.getRuntime().exec(new String[]{"su","-c","reboot -p"});
或者
    Runtime.getRuntime().exec(new String[]{"su","-c","shutdown"})

 

2、重启

方法1、关机属于系统级操作,所以需要获得系统级的权限。

android:sharedUserId="android.uid.system"

相关代码: 

   PowerManager pm = (PowerManager) this.context.getSystemService(Context.POWER_SERVICE);
   pm.reboot("");

同理,也需要系统签名来获得权限。

方法2、以管理员身份运行命令

   Runtime.getRuntime().exec("su -c reboot");

 

你可能感兴趣的:(Android)