如何从 InstrumentationTestCase 发送长按?
在 Android 中,如何从 InstrumentationTestCase
发送长按?例如,我想做一个 sendKeys(KEYCODE_DPAD_CENTER)
但要长时间点击。
In Android, how can I send a long press from an InstrumentationTestCase
? I'd like for instance to do a sendKeys(KEYCODE_DPAD_CENTER)
but make that a long click.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不知道这是否是唯一/正确的方法,但我设法这样做:
Don't know if this is the only/proper way, but I managed to do it this way:
您可以尝试下面的帮助方法:
以及使用示例:
You could try the helper method below:
And example of usage:
android 源代码:
Line 179 in the android source code: