Alarm Does Not Wake up my Service

本小妞迷上赌 提交于 2019-12-01 10:55:09

Why doesn't it work when the phone is in sleep mode ?

Because startService() is asynchronous, and Android only guarantees that a _WAKEUP alarm will keep the device awake until onReceive() ends. You will need to use a WakeLock, either directly or by means of using my WakefulIntentService.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!