android 如何从第三方应用程序的意图中嗅探额外的参数值
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用
getExtras()
获取Bundle
,然后调用keySet()
查看所有键。或者,询问为您启动的应用程序的开发人员他们添加了哪些附加内容。通常,除了标准操作(例如,
ACTION_SEND
)之外,由接收者记录预期的额外内容。Call
getExtras()
to get theBundle
, then callkeySet()
to see all of the keys.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
).