以编程方式重启android设备

时间:2011-06-28 10:40:18

标签: android restart reboot

  

可能重复:
  Reboot the phone on a button click

是否可以以编程方式重启设备。

我只想按一下按钮重启设备。

1 个答案:

答案 0 :(得分:2)

请尝试

try {
Runtime.getRuntime().exec("su");
  Runtime.getRuntime().exec("reboot");
} catch (IOException e) {
}