标签: android unit-testing instrumentation
我一直在尝试为我正在编写的应用程序进行单元测试。我想测试各种缩放操作的图形性能,但我似乎无法弄清楚如何发送包含两个指针的事件。
答案 0 :(得分:4)
在API 9 / Android 2.3 / Gingerbread之前,这是不可能的。方法MotionEvent#obtain可用于创建包含多个指针的MotionEvent,然后您可以将其分派到视图中进行测试。 (完成后请记住recycle() MotionEvent。)
MotionEvent#obtain
MotionEvent
recycle()