gpt4 book ai didi

android - 如果未获取唤醒锁并且设备进入休眠状态,哪些具体功能会停止工作?

转载 作者:行者123 更新时间:2023-11-29 00:57:53 26 4
gpt4 key购买 nike

最近几天,我一直在尝试弄清楚当设备在没有唤醒锁的情况下进入休眠状态时,服务中的哪些功能(后台和前台)停止工作。所有文档只说唤醒锁“防止 CPU 关闭”,但如果我关闭屏幕并拔下设备插头,我测试过的每一个功能都可以在没有唤醒锁的情况下继续工作。我还通过 adb 检查了另一个应用程序是否持有唤醒锁,但唤醒锁计数为 0。

我测试了 CPU 繁重的数学计算、网络请求和通过 MediaPlayer 类播放音乐。在没有唤醒锁的情况下,一切都在后台服务(低于 Oreo)中运行(网络请求在某些模拟器上有效,而在其他模拟器上则无效,但无论有没有唤醒锁,情况都是一样的)。

所以我的问题是,如果设备进入休眠状态,哪些功能会在 Android 上停止工作?

编辑:我想明确表示,我不是在谈论 DOZE。我说的是设备进入休眠状态并关闭 CPU,这应该发生在屏幕关闭并且现在获取唤醒锁定时。

最佳答案

打瞌睡模式并不意味着设备将永久进入非维护模式。这更像是在行动窗口之间的小睡。这是它的样子

Doze provides a recurring maintenance window for apps to use the network and handle pending activities.

这些是限制:

Doze restrictions The following restrictions apply to your apps while

  • Network access is suspended.
  • The system ignores wake locks.
  • Standard AlarmManager alarms (including setExact() and setWindow()) are deferred to the next maintenance window.
  • If you need to set alarms that fire while in Doze, use setAndAllowWhileIdle() or setExactAndAllowWhileIdle().
  • Alarms set with setAlarmClock() continue to fire normally — the system exits Doze shortly before those alarms fire.
  • The system does not perform Wi-Fi scans.
  • The system does not allow sync adapters to run.
  • The system does not allow JobScheduler to run.

来源:https://developer.android.com/training/monitoring-device-state/doze-standby

要查看您的应用在打瞌睡模式下是否仍能正常工作,您可以强制执行它。不要为此使用模拟器,而是在真实设备上尝试。

用它来强制打瞌睡

adb shell dumpsys deviceidle force-idle

取消强制

adb shell dumpsys deviceidle unforce

重置

adb shell dumpsys battery reset

在这里可以找到更多信息:https://developer.android.com/training/monitoring-device-state/doze-standby#testing_doze

另请记住,设备制造商可能会以不同方式处理休眠和待机模式。


据我所知,“ sleep 模式”就是“待机模式”。你也可以通过使用强制:

adb shell dumpsys battery unplug
adb shell am set-inactive <packageName> true

唤醒它

adb shell am set-inactive <packageName> false
adb shell am get-inactive <packageName>

还需要注意的是,当设备正在充电时,系统会退出空闲模式。

关于android - 如果未获取唤醒锁并且设备进入休眠状态,哪些具体功能会停止工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53317861/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com