Android:在多个活动中使用相同的服务
多个活动使用/共享同一服务是否常见?如果是这样,最好的方法是什么?每个活动是否需要绑定到该服务(即每个活动都有自己的 ServiceConnection 对象)
谢谢
Is it common for several activities to use/share the same service? If so, what is the best way to do this? Does each activity need to bind to that service (i.e. each activity has its own ServiceConnection object)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以绑定来自不同活动的服务。这基本上是引入服务的原因之一。
是的,您应该将每个活动视为独立的部分,这就是为什么每个活动都应该创建自己的连接。
Yes, you can bind service from different activities. It's basically one of the reasons services were introduced.
Yes, you should treat each activity as independent part and that's why each activity should create it's own connection.