Android:从活动启动服务后获取服务的信使

发布于 2024-11-04 17:42:19 字数 188 浏览 1 评论 0原文

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

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

发布评论

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

评论(1

这样的小城市 2024-11-11 17:42:19

但是,如果我使用 startService() 启动服务,我没有看到明显的方法来获取服务的 Messenger。

使用 startService() 向服务发送命令。您可以根据需要多次调用此函数。通过 Intent extra 提供活动的 Messenger。这样,您不需要服务拥有自己的 Messenger,更不用说需要将该 Messenger 获取到 Activity。

However, I don't see an obvious way to get the service's Messenger if I start my service using startService() instead.

Use startService() to send commands to the service. You can call this as many times as is necessary. Supply the activity's Messenger via an Intent extra. This way, you do not need the service to have its own Messenger, let alone need to get that Messenger to the activity.

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