Android:警报管理器和服务
我可以使用 AlarmManager 和一个 PendingIntent 启动一项服务吗?我希望,当我的应用程序中没有更多数据时,服务会关闭,并且 AlarmManager 在 X 分钟后重新启动它。有可能吗?
I can start a Service with an AlarmManager and one PendingIntent ? I want that, when in my application there are not more data, the Service go down and the AlarmManager restart it after X minutes. It's possibile ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您传递 AlarmManager 标志 ELAPSED_REALTIME_WAKEUP 或 ELAPSED_REALTIME,它们可用于在手机处于睡眠状态或手动唤醒手机时传递意图。
If you pass the AlarmManager flags ELAPSED_REALTIME_WAKEUP or ELAPSED_REALTIME they can be used to deliver intents when the phone is in sleep, or when you manually wake up the phone.