具体方法参考:
1、使用PowerManager来实现:
代码:private void rebootSystem(){ PowerManager pManager=(PowerManager) getSystemService(Context.POWER_SERVICE); pManager.reboot(""); }
2、发送REBOOT广播:
代码:private void rebootSystem(){ Intent reboot = new Intent(Intent.ACTION_REBOOT); reboot.putExtra("nowait", 1); reboot.putExtra("interval", 1); reboot.putExtra("window", 0); sendBroadcast(reboot); }