Android:从活动启动服务后获取服务的信使
我使用 Messenger 在我的活动和服务之间进行通信。
当我使用 bindService()
启动服务时,我可以通过返回的 IBinder 获取该服务的 Messenger。但是,如果我使用 startService()
启动服务,我看不到获取服务的 Messenger 的明显方法。谢谢!
I'm using Messengers to communicate between my activities and service.
When I start a service using bindService()
, I can get the service's Messenger through the IBinder that's returned. However, I don't see an obvious way to get the service's Messenger if I start my service using startService()
instead. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
startService()
向服务发送命令。您可以根据需要多次调用此函数。通过Intent
extra 提供活动的Messenger
。这样,您不需要服务拥有自己的Messenger
,更不用说需要将该 Messenger 获取到 Activity。Use
startService()
to send commands to the service. You can call this as many times as is necessary. Supply the activity'sMessenger
via anIntent
extra. This way, you do not need the service to have its ownMessenger
, let alone need to get that Messenger to the activity.