85 --> "TAG_LAST_KEYCODE"
ps: adb shell input keyevent 82 // for unlock the screen,
1、input text
该命令主要是用于向获得焦点的EditText控件输入内容!
adb shell input text "hello,world"
该方法只能对EditText输入AscII码的字符,对于UTF-8的字符是无法输入的!(汉字是不要想用这个命令输入的)
关于某些程序希望实现到类似于按键精灵功能自动向文本框输入汉字的功能,可以使用一个比较取巧的办法。
2、input keyevent
该命令主要是向系统发送一个按键指令,实现模拟用户在键盘上的按键动作。
adb shell input keyevent 4oradb shell input keyevent "KEYCODE_BACK"
3、input [touchscreen|touchpad|touchnavigation] tap
该命令是用于向设备[屏幕、触摸板、导航键]发送一个点击操作的指令。参数是X Y。一般设备都是屏幕……
adb shell input tap 100 100
屏幕位置坐标的拾取,可以打开 设置-开发者选项-指针位置开关!打开之后就会有拾取的功能了哦!
4、input [touchscreen|touchpad|touchnavigation] swipe [duration(ms)]//滑动adb shell input swipe 100 100 200 200 300 //从 100 100 经历300毫秒滑动到 200 200 //长按adb shell input swipe 100 100 100 100 1000 //在 100 100 位置长按 1000毫秒
5、input trackball press
这个命令是模拟轨迹球发送点击命令
因为现在手机设备上没有轨迹球,然并卵……
6、input trackball roll
这个命令是模拟轨迹球发送滚动命令
同样,然并卵……
7、sendevent
命令格式:adb shell sendevent [device] [type] [code] [value]
情况1:在某坐标点上touch
如在屏幕的x坐标为40,y坐标为210的点上touch一下,命令如下
adb shell sendevent /dev/input/event0 3 0 40
adb shell sendevent /dev/input/event0 3 1 210
adb shell sendevent /dev/input/event0 1 330 1 //touch
adb shell sendevent /dev/input/event0 0 0 0 //it must have
adb shell sendevent /dev/input/event0 1 330 0 //untouch
adb shell sendevent /dev/input/event0 0 0 0 //it must have
注:以上六组命令必须配合使用,缺一不可
情况2:模拟滑动轨迹(可下载并采用aPaint软件进行试验)
如下例是在aPaint软件上画出一条开始于(100,200),止于(108,200)的水平直线
adb shell sendevent /dev/input/event0 3 0 100 //start from point (100,200)
adb shell sendevent /dev/input/event0 3 1 200
adb shell sendevent /dev/input/event0 1 330 1 //touch
adb shell sendevent /dev/input/event0 0 0 0
adb shell sendevent /dev/input/event0 3 0 101 //step to point (101,200)
adb shell sendevent /dev/input/event0 0 0 0
…………………… //must list each step, here just skip
adb shell sendevent /dev/input/event0 3 0 108 //end point(108,200)
adb shell sendevent /dev/input/event0 0 0 0
adb shell sendevent /dev/input/event0 1 330 0 //untouch
adb shell sendevent /dev/input/event0 0 0 0