adb shell input swipe%startX%%startY%%endX%%endY%rem 等待一段时间 timeout/t2/nobreak>nul rem 检查是否还能继续滑动set/a checkY=startY-500adb shell input swipe%startX%%startY%%endX%%checkY%timeout/t2/nobreak>nul adb shell dumpsys input_method|findstr/c:"mInputShown=false">nulif%errorlevel%...
adb shell input swipe startX startY endX endY 500 从startX,startY坐标滑动到endX,endY坐标 最后一个参数为总体时间(ms) 长按 长按就是特殊的滑动,坐标不变 adb shell input swipe startX startY startX startY 500 输入文字 adb shell input text 内容 按键事件 adb shell input keyevent 82 最后一...
adb shell input swipe 400 100 100 100 300 #右往左 adb shell input swipe 100 100 100 400 300 #上往下 adb shell input swipe 100 400 100 100 300 #下往上 adb shell input swipe 100 100 400 400 300 #上往下斜 adb shell input swipe 400 400 100 100 300 #下往上斜 3.长按 adb shell ...
usage:input text <string> input keyevent <key code number or name> input tap <x> <y> input swipe <x1> <y1> <x2> <y2> 1. 2. 3. 4. 以下是Android 4.4+的input命令: usage: input ... input text <string> input keyevent <key code number or name> input [touchscreen|touchpad|tou...
使用adb shell input swipe命令来模拟手势滑动事件,例如: adb shell input swipe 100 500 100 1450 100 1 表示从屏幕坐标(100,500)开始,滑动到(100,1450)结束,整个过程耗时100ms. 使用上面的命令还可以模拟”**长按(long press)**操作,也就是2个坐标点相同,耗时超过500ms. ...
adb shell input keyevent 224 # 点亮屏幕 adb shell input keyevent 223 # 熄灭屏幕 # 点击屏幕 adb shell input tap <X> <Y> # x,y为坐标位置 # 滑屏 起始点x坐标 起始点y坐标 结束点x坐标 结束点y坐标。 adb shell input swipe 300 1000 300 500 # 向上滑动 ...
adb uninstall , 卸载应用,后面跟的参数是应用的包名,请区别于apk 文件名 '-k' means keep the data and cache directories , -k 选项,卸载时保存数据和缓存目录 adb pull , 将 Android 设备上的文件或者文件夹复制到本地 例如复制 Sdcard 下的 pull.txt 文件到 D 盘: ...
adb shell am start 包名/完整Activity路径 例如: adb shell am start com.zhy.aaa/com.zhy.aaa.MainActivity 如果需要携带参数(携带一个Intent,Key 为name): 代码语言:javascript 复制 adb shell am start com.zhy.aaa/com.zhy.aaa.MainActivity-e name zhy ...
命令(参数以机型 Nexus 5,向上滑动手势解锁举例):adb shell input swipe 300 1000 300 500 ...