如何在不启动其他活动或服务的情况下向其发送意图?
我想跨活动和服务发送一些数据。
我尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注册一个您想要接收消息的广播接收器。然后用 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.