如何使用 MonkeyRunner 将 Extra 传递给 Android 意图?

发布于 2024-10-15 22:49:32 字数 540 浏览 3 评论 0原文

我正在尝试使用 MonkeyRunner 工具测试我的应用程序。我正在尝试为我的活动添加额外内容。 python 脚本执行时没有错误:

device = MonkeyRunner.waitForConnection()
device.wake()
extra = {'MY_EXTRA', True}
device.startActivity(component="org.mycompany.myapp/.activity.Show",extras=extra)

但是当我检查应用程序中的意图时,我没有得到传递的值:

boolean myExtra = i.getBooleanExtra("MY_EXTRA", false);

我缺少什么?我传递的意图是否错误?我检查 Android 应用程序中的值是否错误?

I am trying to test my app using the MonkeyRunner tool. I am trying to add an EXTRA to my activity. The python script executes without error:

device = MonkeyRunner.waitForConnection()
device.wake()
extra = {'MY_EXTRA', True}
device.startActivity(component="org.mycompany.myapp/.activity.Show",extras=extra)

But when I inspect the intent in my app I do not get the value passed:

boolean myExtra = i.getBooleanExtra("MY_EXTRA", false);

What am I missing? Am I passing in the intent wrong? Am I inspecting the value in the Android app wrong?

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

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

发布评论

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

评论(1

双马尾 2024-10-22 22:49:32

这是 MonkeyRunner 中的一个错误。它无法正确处理将 boolean 传递到 extra 中。如果你传递一个字符串,它应该可以工作。

修复了此问题。

This is a bug in MonkeyRunner. It is not correctly handling passing boolean into extras. If you pass a string instead, it should work.

This fixes this issue.

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