gpt4 book ai didi

安卓 2.2 : Reboot device programmatically

转载 作者:可可西里 更新时间:2023-11-01 19:12:27 25 4
gpt4 key购买 nike

我想知道是否有通过代码重启设备的方法。我试过了:

Intent i = new Intent(Intent.ACTION_REBOOT); 
i.putExtra("nowait", 1);
i.putExtra("interval", 1);
i.putExtra("window", 0);
sendBroadcast(i);

并为 REBOOT 添加了权限,但它仍然不起作用。

谢谢

最佳答案

这似乎对我有用:

try {
Process proc = Runtime.getRuntime().exec(new String[] { "su", "-c", "reboot" });
proc.waitFor();
} catch (Exception ex) {
Log.i(TAG, "Could not reboot", ex);
}

关于安卓 2.2 : Reboot device programmatically,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4580254/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com