安卓报警服务
我正在编写一个警报后台服务,这是使用广播接收器或服务的最佳方式。
I am writing an alarm back ground service which one is best way to use a BroadCast reciever or Service.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用BR。如果您要执行的任务很短(5秒),您可以在 BR 中执行您想要的所有操作,否则由于 Android 执行 BR 的时间限制,您必须使用服务。请参阅文档并检查限制是什么(我不太记得了)。
Use BR. If task you want to execute is short (5s) you can do all you want in your BR otherwise you MUST use service due to android time limit for BR execution. Refer to documentation and check what the limit is (I don't remember it exactly).