如何在不启动其他活动或服务的情况下向其发送意图?

发布于 2024-11-15 05:09:37 字数 228 浏览 2 评论 0原文

我想跨活动和服务发送一些数据。

我尝试使用 PendingIntent.send() 发送数据,但是一旦我调用 PendingIntent.send(),我的所有服务就开始工作。我不希望它们被 PendingIntent.send() 调用。

我应该使用其他方法吗?或者我应该将我需要的所有信息放入一个大捆绑包中并在班级之间传输它?

I want to send some data across activities and services.

I try to use PendingIntent.send() to send my data, but as soon as I call PendingIntent.send(), all my services starts to work. I don't want them to be called by PendingIntent.send().

Should I use other methods? Or should I put all the information I need into a big Bundle and the transfer it between classes?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

荒芜了季节 2024-11-22 05:09:37

注册一个您想要接收消息的广播接收器。然后用 context.sendBroadcast(Intent);发送带有必要数据的意图。您可以使用 IntentFilters 来过滤消息以及接收者可以获取的消息类型。

Register a broadcast receiver where you want to receive messages. Then with context.sendBroadcast(Intent); send intent with the necessary data. You can use IntentFilters to filter the messages and what kind of messages the receiver can fetch.

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