Android假触摸屏
是否可以通过代码在屏幕上的特定点(例如(x,y))生成假触摸?我的活动上有一个按钮,但我不想通过触摸屏点击它?有什么办法可以实现这一点吗?
Is it possible to generate a fake touch at a particular point (say (x,y)) on the screen from the code? There is a button on my activity and I dont want to click it through touch screen? Is there any way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个方法应该对你有帮助。
http://developer.android.com/reference/android/view/View .html#performClick()
This method should help you.
http://developer.android.com/reference/android/view/View.html#performClick()
以下代码生成触摸事件,就好像屏幕被真正触摸一样。
注意:仅限已取得 root 权限的设备
The following code generates touch event as if the screen is really touched.
CAUTION: rooted devices only