启动并绑定的服务可以“永远”存在吗?
据我所知,服务可以以两种模式运行:启动模式和绑定模式。
我从开发人员文档或本网站上的其他问题中不太明白的是,当最后一个组件与它解除绑定时,以启动和绑定方式运行的服务是否会退出?
I understand that a service can run in two modes, started and bound.
What I don't quite understand from the developer docs or other questions on this site, is whether a service running as both started and bound will exit when the last component unbinds from it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
Service
上调用了startService()
,则无论bindService()
和unbindService()< 是什么,它都会保持运行状态。 /code> 通话可能已继续。最终,Android 将停止该服务,或者用户将终止该服务,但这两种情况都不会在最后一次
unbindService()
后立即发生。If something called
startService()
on theService
, it will remain running, regardless of whatbindService()
andunbindService()
calls may have gone on. Eventually, Android will stop the service, or the user will kill the service, but neither will happen immediately upon the lastunbindService()
.