Android 定时重启Android系统源(手机root后可用) [系统支持自定义重启]

定时重启Android系统源码,点击下面的GitHub链接哈
github源码:点击进入github查看

1.manifest中添加权限如下:【手机未root,运行报错,安装不上】

2.执行下面代码段即可完成重启

public void rebootAction() {
        L.d("MWindowService --- rebootAction");
        String cmd = "su -c reboot";
        try {
            Runtime.getRuntime().exec(cmd);
        } catch (Exception e) {
            Toast.makeText(getApplicationContext(), "Error! Fail to reboot.", Toast.LENGTH_SHORT).show();
        }
    }
 

你可能感兴趣的:(开发,基础,android)