从 Android 重新启动整个设备
有没有什么方法可以从 android 内部按代码重新启动设备。我可以高度定制设备(平板电脑)上的所有软件。作为背景信息:我想要一个计时器,如果没有重置,则在定义的计数后重新启动设备。
编辑:
如果没有Buildin-Way,是否可以做到这一点?
Is there any way to restart a device per code from within android. I can highly customize all software on the device (tablet). As Backgroundinfo: I want a timer that restarts the device after a defined count if he did not get reseted.
Edit:
If there there is no Buildin-Way is it possible to do this anyway?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一般来说,Google 不允许第三方应用程序重新启动设备,下面的几个链接可能会有所帮助
http://groups.google.com/group/android-platform/browse_thread/thread/daf7c685e020d296
http://groups.google.com/group/android-developers/browse_thread/thread/5a97467ef5b4bf47/a1fe9379d4f5e30f?pli=1
In general Google dont allow third party apps to Reboot device below are few link might be helpful
http://groups.google.com/group/android-platform/browse_thread/thread/daf7c685e020d296
http://groups.google.com/group/android-developers/browse_thread/thread/5a97467ef5b4bf47/a1fe9379d4f5e30f?pli=1
我相信,这在应用程序内是不可能的。
重新启动设备的意图(ACTION_REBOOT,如果我记得的话,但我很高兴得到纠正!)只能从系统本身调用,而不能从驻留在系统上的任何软件调用。
(请参阅此处的 Android 参考文档。)
This isn't possible from within an app, I believe.
The intent for rebooting the device (ACTION_REBOOT, if I recall, but I'm happy to be corrected!) can only be called from the system itself, not from any software residing on it.
(See the Android reference docs here.)