是否可以在 Android 上进行多点触控单元测试?

发布于 2024-11-15 04:41:03 字数 70 浏览 3 评论 0原文

我一直在尝试为我正在编写的应用程序进行单元测试。我想测试各种缩放操作的图形性能,但我似乎无法弄清楚如何发送包含两个指针的事件。

I've been trying to make a unit test for an application I'm writing. I want to test the graphics performance on various zoom operations, but I can't seem to figure out how to send events that contain two pointers.

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

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

发布评论

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

评论(1

被翻牌 2024-11-22 04:41:03

在 API 9/Android 2.3/Gingerbread 之前这是不可能的。该方法 MotionEvent#obtain 可用于创建包含多个指针的 MotionEvent,然后您可以将其分派到视图进行测试。 (使用完后请记住recycle() MotionEvent。)

This was not possible before API 9/Android 2.3/Gingerbread. The method MotionEvent#obtain can be used to create a MotionEvent containing multiple pointers, which you can then dispatch to your views for testing. (Remember to recycle() the MotionEvent when you're done with it.)

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