如何让android进入低功耗状态

发布于 2024-10-17 02:53:39 字数 107 浏览 1 评论 0原文

我有一个高度数据计算密集型应用程序,必须每 60 秒处理一次通过蓝牙接收的数据,然后在接下来的 60 秒内保持低功耗状态。我检查了 PowerManager api,但无法使用它。我有办法完成任务吗?

i have a highly data computation intensive application that has to process data received via bluetooth every 60 seconds and then stay in low power state for the next 60 seconds. i checked out the PowerManager api but i am unable to use it. is there a way i could accomplish the task?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七色彩虹 2024-10-24 02:53:39

您不能“将 android 置于低功耗状态”。如果没有任何东西持有 WakeLock 来强制 CPU 保持运行,Android 在一段时间不活动后自然会进入睡眠模式。

You cannot "put android on low power state". Android naturally will go into a sleep mode after a period of inactivity, if nothing is holding a WakeLock to force the CPU to stay running.

柒夜笙歌凉 2024-10-24 02:53:39

您可以使用 PowerManager goToSleep() 方法“强制设备进入睡眠状态。覆盖所有持有的唤醒锁”: http://developer.android.com/reference/android/os/PowerManager.html#goToSleep%28long%29

You can use PowerManager goToSleep() method to "force the device to go to sleep. Overrides all the wake locks that are held": http://developer.android.com/reference/android/os/PowerManager.html#goToSleep%28long%29

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文