嘿我试图在我的应用中为root用户实现重启,但下面的代码不起作用。 SU提示会弹出,但当我允许操作没有任何反应时,它将不会重启。有什么想法吗?
try {
Runtime.getRuntime().exec("su");
Runtime.getRuntime().exec("reboot");
} catch (IOException e) {
}
这也不起作用,SU弹出但没有重启。
Runtime.getRuntime().exec(new String[]{"/system/bin/su","-c","reboot"});