android 如何从第三方应用程序的意图中嗅探额外的参数值

发布于 2024-11-06 10:13:08 字数 155 浏览 0 评论 0原文

Logcat 打印 05-09 08:26:17.979 I/ActivityManager(2257): 启动活动: Intent { cmp=com .com.pkg/.classname(有额外内容)} 如何知道这些额外的密钥对值是什么? 上面的日志来自第三方应用程序,我没有任何控制权。

Logcat prints 05-09 08:26:17.979 I/ActivityManager( 2257): Starting activity: Intent { cmp=com
.com.pkg/.classname (has extras) }
How to know what are those extra key pair values?
The above log comes from a third party app which i don't have any control.

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

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

发布评论

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

评论(1

呆° 2024-11-13 10:13:08

如何知道这些额外的密钥对值是什么?

调用 getExtras() 获取 Bundle,然后调用 keySet() 查看所有键。

上述日志来自第三方应用程序,我无法控制。

或者,询问为您启动的应用程序的开发人员他们添加了哪些附加内容。通常,除了标准操作(例如,ACTION_SEND)之外,由接收者记录预期的额外内容。

How to know what are those extra key pair values?

Call getExtras() to get the Bundle, then call keySet() to see all of the keys.

The above log comes from a third party app which i don't have any control.

Or, ask the developers of the app that is launching you what they are putting in as extras. Usually it is up to the recipient to document what extras are expected, except for standard actions (e.g., ACTION_SEND).

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