是否可以在 Android 上进行多点触控单元测试?
我一直在尝试为我正在编写的应用程序进行单元测试。我想测试各种缩放操作的图形性能,但我似乎无法弄清楚如何发送包含两个指针的事件。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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 aMotionEvent
containing multiple pointers, which you can then dispatch to your views for testing. (Remember torecycle()
theMotionEvent
when you're done with it.)