有没有办法通过代码模拟Android设备屏幕上的点击?

时间:2013-02-24 21:34:18

标签: android onclick

我想创建一个应用程序,它接受设备屏幕的坐标并模拟手指点击该点。有没有办法通过代码做这样的事情?

2 个答案:

答案 0 :(得分:1)

如果这对您有好处,您可以调用onClick特定视图。

View v;// or any of your view that extends View(ImageView, TextView etc...)
v.performClick();//API 1 //you can use this with longClick aswell
v.callOnClick();//API 15
//see documentation for these methods

答案 1 :(得分:1)

检查monkeyrunner

您可以使用monkeyrunner api在Android设备上远程执行触摸事件。