接收隐式意图的应用程序的身份?
我想知道是否有任何方法可以以编程方式获取接收我自己的应用程序发送的隐式意图的应用程序(或组件)的身份(名称)。
假设应用程序 A 通过操作 SEND-SMS 发送隐式意图。是否可以让 A 知道该操作启动了哪个应用程序?
非常感谢。
I want to know if there's any way to programatically get the identity(name) of the application (or the component) that received the implicit intent that my own application sent.
Let's say application A sends an implicit intent with action SEND-SMS . Would it be possible to let A know what application was started for that action?
Thank a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
startActivity()
,则不需要。但是,您可以
isDefault
),则显示一个意图选择器(例如调用 createChooser())。问题是:我不相信自定义意图选择器可以使活动成为给定操作的“默认”。
If you're using
startActivity()
, then no.However, you here's a workaround
isDefault
set), then display an intent chooser (e.g. call createChooser()).The catch: I don't believe a custom intent chooser can make an activity the "default" for a given action.