adb shell input tap100100 4、input [touchscreen|touchpad|touchnavigation] swipe [duration(ms)] 向设备发送一个滑动的指令,并且可以选择设置滑动的时长。 同时也可以实现长按(长按就是一种特殊的滑动,即位置不变的滑动) //滑动adb shell input swipe100100200200300//从 100 100 经历300毫秒滑动到 200 200/...
tap <x> <y> (Default: touchscreen) swipe <x1> <y1> <x2> <y2> [duration(ms)] (Default: touchscreen) press (Default: trackball) roll <dx> <dy> (Default: trackball) 操作示例如下: - 模拟点击事件 adb shell input tap x坐标 y坐标 adb shell input tap 528 1539 - 输入文本 首先需要...
点击操作:input tap <x> <y> 例如:input tap 100 200 滑动操作:input swipe <x1> <y1> <x2> <y2> 例如:input swipe 0 0 100 100 按下滚动球:input press(现在被废弃了) 移动滚动球:input roll <dx> <dy>(现在废弃了) 截屏:adb shell screencap <filename> 例如:adb shell screencap /sdcard/...
The commands and default sources are: text <string> (Default: touchscreen) keyevent [--longpress] <key code number or name> ... (Default: keyboard) tap <x> <y> (Default: touchscreen) swipe <x1> <y1> <x2> <y2> [duration(ms)] (Default: touchscreen) press (Default: trackball) ...
如上,input后可以跟很多参数, text相当于输入内容,keyevent相当于手机物理或是屏幕按键,tap相当于touch事件,swipe相当于滑动。下面我们来学习相应的用法。 1、input text用法 C:\Documents and Settings\Administrator>adb shell shell@lentk6735_66t_l1:/ $ input text OuyangPeng ...
tap <x> <y> (Default: touchscreen) swipe <x1> <y1> <x2> <y2> [duration(ms)] (Default: touchscreen) press (Default: trackball) roll <dx> <dy> (Default: trackball) 操作示例如下: - 模拟点击事件 adb shell input tap x坐标 y坐标 ...
tap <x> <y> (Default: touchscreen) swipe <x1> <y1> <x2> <y2> [duration(ms)] (Default: touchscreen) press (Default: trackball) roll <dx> <dy> (Default: trackball) 这个很简单,就不解释了! 一、keyevent事件 我常用到的有两个 ...
adbshell adb常用命令 1.模拟点击 adb shell input tap 100 100 2.滑动 adb shell input swipe x1 y1 x2 y2 adb input touchscreen swipe x1 y1 x2 y2 100 adb shell input swipe 100 100 400 100 300 #左往右 adb shell input swipe 400 100 100 100 300 #右往左 ...
shell@lentk6735_66t_l1:/ $ input tap 600 800 其中X坐标600,Y坐标800正好在“收音机”图标所在区域,因此执行上述代码后,会进入“收音机”应用。 4、input swipe用法 input swipe模拟的是滑动事件,input swipe <x1> <y1> <x2> <y2> [duration(ms)] (Default: touchscreen),需要将起始的坐标传进去。
adb shell input touchscreen swipe 330 880 930 880向右滑,模拟滑动触屏 adb shell input touchscreen swipe 930 380 930 880向下滑,模拟滑动触屏 adb shell input mouse tap 100 500模拟鼠标操作(屏幕坐标, 原点在屏幕左上角) adb shell input keyevent 26#电源键 ...