Android 上的多点触控测试用例?

发布于 2024-09-04 15:20:38 字数 552 浏览 3 评论 0原文

Android 文档中的 TouchUtils 类具有诸如 drag() 之类的函数:

https://developer.android.com/reference/android/test/TouchUtils.html#drag(android .test.InstrumentationTestCase,%20float,%20float,%20float,%20float,%20int)

,但它们不支持多点触摸手势,例如两根手指滑动。

查看 MotionEvent.obtain() 方法,似乎没有任何方法可以从测试用例调用“虚拟”多点触摸事件。

有人已经成功了吗?

The TouchUtils class in the android documentation has functions like drag():

https://developer.android.com/reference/android/test/TouchUtils.html#drag(android.test.InstrumentationTestCase,%20float,%20float,%20float,%20float,%20int)

but they do not support multi touch gestures, like a two finger swipe.

Looking at the MotionEvent.obtain() methods, there does not seem to be any way of invoking a "virtual" multi touch event from a testcase.

Anyone has got it working?

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

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

发布评论

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

评论(1

盗梦空间 2024-09-11 15:20:38

显然,除了使用私有函数 MotionEvent.obtainNano() 来模拟多点触摸事件之外,没有其他方法了。希望这会在未来的版本中改变。

Apparently there is no other way than to use the private function MotionEvent.obtainNano() to mock the multi touch events. Hopefully this will change in future versions.

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