android 调试中的虚拟手工具

android 中很多时间是可以通过命令来模拟的,特别是一些测试任务。

模拟命令可以用input命令来实现。 

使用方式

input ...

       input text <string>

       input keyevent <key code number or name>

       input tap <x> <y>

       input swipe <x1> <y1> <x2> <y2>

 

 keyevent指的是android对应的keycode,比如home键的keycode=3,back键的keycode=4.

具体请查阅 <android keycode详解>

https://blog.csdn.net/huiguixian/article/details/8550170

 

然后使用的话比较简单,比如想模拟home按键:

adb shell input keyevent 3

请查阅上述文章,根据具体keycode编辑即可。

 

2. 关于tap的话,他模拟的是touch屏幕的事件,只需给出x、y坐标即可。 

此x、y坐标对应的是真实的屏幕分辨率,所以要根据具体手机具体看,比如你想点击屏幕(x, y) = (250, 250)位置:

 adb shell input tap 250 250

  

3. 关于swipe同tap是一样的,只是他是模拟滑动的事件,给出起点和终点的坐标即可。例如从屏幕(250, 250), 到屏幕(300, 300)即

 adb shell input swipe 250 250 300 300

 

至于坐标的获得,可以在开发者选项中打开鼠标位置选项即可获得。

 

参考 https://www.2cto.com/kf/201309/245906.html

 

posted @ 2017-09-27 09:48  hudalikm  阅读(293)  评论(0编辑  收藏  举报