Android实现关机重启的方法分享
Android实现关机重启的方法分享
发布时间:2016-12-28 来源:查字典编辑
摘要:实现系统重启的APK需要system的权限,在AndroidManifest.xml中增加android:sharedUserId="and...

实现系统重启的APK需要system的权限,在AndroidManifest.xml中增加android:sharedUserId="android.uid.system",再修改签名即可;

具体方法参考:

点击打开链接

1、使用PowerManager来实现:

代码:

复制代码 代码如下:

private void rebootSystem(){

PowerManager pManager=(PowerManager) getSystemService(Context.POWER_SERVICE);

pManager.reboot("");

}

2、发送REBOOT广播:

代码:

复制代码 代码如下:

private void rebootSystem(){

Intent reboot = new Intent(Intent.ACTION_REBOOT);

reboot.putExtra("nowait", 1);

reboot.putExtra("interval", 1);

reboot.putExtra("window", 0);

sendBroadcast(reboot);

}

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新安卓软件开发学习
热门安卓软件开发学习
编程开发子分类