Android通过代码重启设备

Posted grace_dl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android通过代码重启设备相关的知识,希望对你有一定的参考价值。

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

以上是关于Android通过代码重启设备的主要内容,如果未能解决你的问题,请参考以下文章

在 GPS 芯片长时间处于活动状态后,Android 设备需要重启/重启才能获取 GPS 位置

android睡眠后唤醒键没有反映

Android相机应用程序(图片仅在重启后显示)

读取 Android 设备内核日志的方法

android设备重启时ImageView不保留图像

在开机或重启设备时启动Android服务[重复]