adb shell input swipe 300 1000 300 500 # 向上滑动 adb shell input swipe 300 100 300 1000 # 向下滑动 adb shell input swipe 1000 500 200 500 # 向左滑动 adb shell input swipe 200 500 1000 500 # 向右滑动 # 输入文本 adb shell input text hello # 输入hello 中文键码 + View Code 获取设备...
adb shell input keyevent223 滑动解锁 如果锁屏没有密码,是通过滑动手势解锁,那么可以通过input swipe来解锁。 命令(参数以机型 Nexus 5,向上滑动手势解锁举例) adb shell input swipe3001000300500 参数300 1000 300 500分别表示起始点x坐标 起始点y坐标 结束点x坐标 结束点y坐标。 输入文本 在焦点处于某文本框时...
adb shell input keyevent223 滑动解锁 如果锁屏没有密码,是通过滑动手势解锁,那么可以通过input swipe来解锁。 命令(参数以机型 Nexus 5,向上滑动手势解锁举例) 代码语言:javascript 复制 adb shell input swipe3001000300500 参数300 1000 300 500分别表示起始点x坐标 起始点y坐标 结束点x坐标 结束点y坐标。 输入文...
adb shell input keyevent 24 降低音量:adb shell input keyevent 25 静音:adb shell input keyevent...
命令:adb shell input swipe 300 1000 300 500 (其中参数 300 1000 300 500 分别表示起始点x坐标 起始点y坐标 结束点x坐标 结束点y坐标。)点击内容adb shell input tap 该命令是用于向设备发送一个点击操作的指令,参数是 坐标 adbshell input tap 100 100输入文本:在焦点处于某文本框时,可以通过 input 命令...
adb shell input swipe 300 1000 300 500#滑动解锁,向上滑动手势解锁 adb shell input text hello#焦点处于某文本框时输入文本 运行程序 adb shell dumpsys window w |findstr \/ |findstr name=查看已打开app的包名 adb shell am start -a android.intent.action.CALL -d tel:10010拨打电话 ...
adb shell input tap<X> <Y> 1. 2. 滑动屏幕 四个参数:起始点 x 坐标 起始点 y 坐标 结束点 x 坐标 结束点 y 坐标 # 向上滑动 adb shell input swipe3001000300500# 向下滑动 adb shell input swipe3001003001000# 向左滑动 adb shell input swipe1000500200500# 向右滑动 ...
adb shell input keyevent 82 滑动解锁 如果锁屏没有密码,是通过滑动手势解锁,那么可以通过 input swipe 来解锁。 命令(参数以机型 Nexus 5,向上滑动手势解锁举例): adb shell input swipe 300 1000 300 500 参数300 1000 300 500 分别表示起始点x坐标 起始点y坐标 结束点x坐标 结束点y坐标 ...
第一步:执行adb shell命令; 第二步:执行cd <directory>命令切换到目标目录。 删除文件或目录 代码语言:javascript 复制 adb shell rm[options]<files or directory> 第一步:执行adb shell命令; 第二步:执行rm [options] <files or directory>命令删除文件或目录。
adb shell pm clear com.qihoo360.mobilesafe 表示清除 360 手机卫士的数据和缓存。 查看前台 Activity 命令: adb shell dumpsys activity activities | grep mResumedActivity 输出示例: mResumedActivity: ActivityRecord{8079d7e u0 com.cyanogenmod.trebuchet/com.android.launcher3.Launcher t42} ...