标签: android restart reboot
可能重复: Reboot the phone on a button click
是否可以以编程方式重启设备。
我只想按一下按钮重启设备。
答案 0 :(得分:2)
请尝试
try { Runtime.getRuntime().exec("su"); Runtime.getRuntime().exec("reboot"); } catch (IOException e) { }