接收隐式意图的应用程序的身份?

发布于 2024-12-23 05:32:39 字数 138 浏览 1 评论 0原文

我想知道是否有任何方法可以以编程方式获取接收我自己的应用程序发送的隐式意图的应用程序(或组件)的身份(名称)。

假设应用程序 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 技术交流群。

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

发布评论

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

评论(1

左秋 2024-12-30 05:32:39

如果您使用 startActivity(),则不需要。

但是,您可以

  • 使用 queryIntentActivities() 来确定可以针对意图启动哪些活动。
  • 如果返回多个活动(并且没有一个活动设置了 isDefault),则显示一个意图选择器(例如调用 createChooser())。
  • 将该过程的显式结果传递给 startActivity()。

问题是:我不相信自定义意图选择器可以使活动成为给定操作的“默认”。

If you're using startActivity(), then no.

However, you here's a workaround

  • Use queryIntentActivities() to determine which activities could be launched for an intent.
  • If more than one activity is returned (and none have isDefault set), then display an intent chooser (e.g. call createChooser()).
  • Pass the explicit result from that process into startActivity().

The catch: I don't believe a custom intent chooser can make an activity the "default" for a given action.

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