Android AlarmService 是如何调度的?
有什么方法可以查找系统中安排的警报吗?
只是为了测试目的,我想看看安排了什么或者是否出了问题。
谢谢, 一个。
I am referring for example to http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/AlarmService_Service.html
Is there some way to look up what alarms are scheduled in the system?
Just for testing purpose I want to see what is scheduled or if something went wrong.
Thanks,
A.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过在命令行中键入:
或仅
在 adb shell 中进行检查。
You can check this by typing at the command line:
or just
from within the adb shell.
我认为警报是通过将值放入系统数据库来安排的。
你也许应该去那里检查一下。
I think the alarms are scheduled by putting values in the system database.
You should probably check there.