我想创建一个应用程序,它接受设备屏幕的坐标并模拟手指点击该点。有没有办法通过代码做这样的事情?
答案 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 api在Android设备上远程执行触摸事件。