在我的 android 应用程序中,我想在单击按钮时重新启动我的 android 设备。但它可以在有根电话中工作,但不能在无根电话中工作。
try {
Runtime.getRuntime().exec(new String[]{"su","-c","reboot now"}));
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
是否可以重新启动有根和无根的android设备?