启动并绑定的服务可以“永远”存在吗?

发布于 2024-10-24 17:53:16 字数 103 浏览 0 评论 0原文

据我所知,服务可以以两种模式运行:启动模式和绑定模式。

我从开发人员文档或本网站上的其他问题中不太明白的是,当最后一个组件与它解除绑定时,以启动和绑定方式运行的服务是否会退出?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉生梦死 2024-10-31 17:53:16

当最后一个组件解除绑定时,以启动和绑定方式运行的服务是否会退出?

如果 Service 上调用了 startService(),则无论 bindService()unbindService()< 是什么,它都会保持运行状态。 /code> 通话可能已继续。最终,Android 将停止该服务,或者用户将终止该服务,但这两种情况都不会在最后一次 unbindService() 后立即发生。

whether a service running as both started and bound will exit when the last component unbinds from it?

If something called startService() on the Service, it will remain running, regardless of what bindService() and unbindService() 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 last unbindService().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文