我可以从另一个服务绑定到一个服务吗?
我可以从另一个服务中绑定到一个服务吗?如果可以,请告诉我如何绑定。非常感谢。
Can I bind to a Service from within another service, if so please advice me how. Thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有尝试过,所以我不能肯定地说,但因为
bindService(...)
是android.content.ContextWrapper
的一种方法,其中Service
扩展,我想说您的操作方式与在Activity
中的操作方式相同(它也扩展了ContextWrapper
)。Not something I've tried so I can't say for certain but as
bindService(...)
is a method ofandroid.content.ContextWrapper
whichService
extends, I'd say you do it the same way as from within anActivity
(which also extendsContextWrapper
).服务
是一个上下文
。这意味着它与Activity
的绑定相同(这也是一个Context
)。A
Service
is aContext
. Meaning it bind the same with as with anActivity
(which is also aContext
).