Android ADB命令详解
adb的全称为android debug bridge.是android司机经常用到的工具
.
你能在本篇文章中学到什么?
- adb基本指令
- shell am&pm
- adb模拟用户事件
- logcat日志
- 常用节点
- 远程adb
- 常用命令集
一. 基本指令
- 进入指定设备
adb -s serialnumber shell
- 查看版本
adb version
- 查看日志
adb logcat
- 查看设备
adb devices
- 连接状态
adb get-state
- 启动adb服务
adb start-server
- 停止adb服务
adb kill-server
- 电脑推送到手机
adb push local remote
- 手机拉取到电脑
adb pull remote local
二. adb shell下的am 与 pm
注:am和pm命令必须先切换到adb shell模式下才能使用
am
am全称activity manager,你能使用am去模拟各种系统的行为,例如去启动一个activity,强制停止进程,发送广播进程,修改设备屏幕属性等等。当你在adb shell命令下执行am命令:
am <command>
- 启动app
am start -n {packagename}/.{activityname}
- 杀app的进程
am kill <packagename>
- 强制停止一切
am force-stop <packagename>
- 启动服务
am startservice
- 停止服务
am stopservice
- 打开简书
am start -a android.intent.action.view -d http://www.jianshu.com/
- 拨打10086
am start -a android.intent.action.call -d tel:10086
pm
pm全称package manager,你能使用pm命令去模拟android行为或者查询设备上的应用等,当你在adb shell命令下执行pm命令:
pm <command>
- 列出手机所有的包名
pm list packages
- 安装/卸载
pm install/uninstall
三. 模拟用户事件
- 文本输入:
adb shell input text <string>
例:手机端输出demo字符串,相应指令:adb shell input "demo".
- 键盘事件:
input keyevent <keycode>,其中keycode见本文结尾的附表
例:点击返回键,相应指令: input keyevent 4.
- 点击事件:
input tap <x> <y>
例:点击坐标(500,500),相应指令: input tap 500 500.
- 滑动事件:
input swipe <x1> <y1> <x2> <y2> <time>
例:从坐标(300,500)滑动到(100,500),相应指令: input swipe 300 500 100 500.
例:200ms时间从坐标(300,500)滑动到(100,500),相应指令: input swipe 300 500 100 500 200.
循环 shell命令:
四. logcat日志
- 显示包含的logcat
logcat \| grep <str>
- 显示包含,并忽略大小写的logcat
logcat \| grep -i <str>
- 读完所有log后返回,而不会一直等待
logcat -d
- 清空log并退出
logcat -c
- 打印最近的count
logcat -t <count>
- 格式化输出log,其中format有如下可选值:
logcat -v <format>
brief — 显示优先级/标记和原始进程的pid (默认格式)
process — 仅显示进程pid
tag — 仅显示优先级/标记
thread — 仅显示进程:线程和优先级/标记
raw — 显示原始的日志信息,没有其他的元数据字段
time — 显示日期,调用时间,优先级/标记,pid
long —显示所有的元数据字段并且用空行分隔消息内容
五. 常用节点
查看节点值,例如:cat /sys/class/leds/lcd-backlight/brightness
修改节点值,例如:echo 128 > sys/class/leds/lcd-backlight/brightness
- lpm:
echo n > /sys/modue/lpm_levels/parameters/sleep_disabled
- 亮度:
/sys/class/leds/lcd-backlight/brightness
- cpu:
/sys/devices/system/cpu/cpu0/cpufreq
- gpu:
/sys/class/ kgsl/kgsl-3d0/gpuclk
- 限频:
cat /data/pmlist.config
- 电流:
cat /sys/class/power_supply/battery/current_now
- 查看power:
dumpsys power
- wifi :
data/misc/wifi/wpa_supplicant.conf
- 持有wake_lock:
echo a> sys/power/wake_lock
- 释放wake_lock:
echo a> sys/power/wake_unlock
- 查看wakeup_source:
cat sys/kernel/debug/wakeup_sources
- display(关闭ad):
mv /data/misc/display/calib.cfg /data/misc/display/calib.cfg.bak 重启
- 关闭cabc:
echo 0 > /sys/device/virtual/graphics/fb0/cabc_onoff
- 打开cabc:
echo 3 > /sys/device/virtual/graphics/fb0/cabc_onoff
- systrace:
sdk/tools/monitor
- 限频:
echo /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq 1497600
- 当出现read-only 且 remount命令不管用时:
adb shell mount -o rw,remount /
- 进入9008模式:
adb reboot edl
- 查看高通gpio:
sys/class/private/tlmm 或者 sys/private/tlmm
- 查看gpio占用情况:
sys/kernle/debug/gpio
六. 远程adb
为避免使用数据线,可通过wifi通信,前提是手机与pc处于同一局域网
启动方法:
adb tcpip 5555 //这一步,必须通过数据线把手机与pc连接后再执行 adb connect <手机ip>
停止方法:
adb disconnect //断开wifi连接 adb usb //切换到usb模式
七. 常用操作示例
- 查看当前
ls
- 打印当前路径
pwd
- 查看当前连接的设备
adb devices
- 终止adb服务进程
adb kill-server
- 重启adb服务进程
adb start-server
- pid是:8607 查看某个进程的日志
adb logcat -v process |grep 8607
- 清理缓存
logcat -c
- 打印xys标签log
adb logcat -s xys
- 打印192.168.56.101:5555设备里的xys标签log
adb -s 192.168.56.101:5555 logcat -s xys
- 打印在activitymanager标签里包含start的日志
adb logcat -s activitymanager | findstr "start"
"-s"选项 : 设置输出日志的标签, 只显示该标签的日志;
"-f"选项 : 将日志输出到文件, 默认输出到标准输出流中, -f 参数执行不成功;
"-r"选项 : 按照每千字节输出日志, 需要 -f 参数, 不过这个命令没有执行成功;
"-n"选项 : 设置日志输出的最大数目, 需要 -r 参数, 这个执行 感觉 跟 adb logcat 效果一样;
"-v"选项 : 设置日志的输出格式, 注意只能设置一项;
"-c"选项 : 清空所有的日志缓存信息;
"-d"选项 : 将缓存的日志输出到屏幕上, 并且不会阻塞;
"-t"选项 : 输出最近的几行日志, 输出完退出, 不阻塞;
"-g"选项 : 查看日志缓冲区信息;
"-b"选项 : 加载一个日志缓冲区, 默认是 main, 下面详解;
"-b"选项 : 以二进制形式输出日志;
- 重启机器
adb reboot
- 获取序列号
adb get-serialno
- 重启到bootloader,即刷机模式
adb reboot bootloader
- 重启到recovery,即恢复模式
adb reboot recovery
- 安装apk:
adb install <apkfile> //比如:adb install baidu.apk
- 安装apk到sd卡:
adb install -s <apkfile> // 比如:adb install -s baidu.apk
- 卸载apk:
adb uninstall <package> //比如:adb uninstall com.baidu.search
- 获取机器mac地址
adb shell cat /sys/class/net/wlan0/address
- 启动应用:
adb shell am start -n <package_name>/.<activity_class_name> 例如:adb shell am start -n yf.o2o.store/yf.o2o.store.activity.loginactivity
- 查看占用内存排序
adb shell top
- 查看占用内存前6的app:
adb shell top -m 6
- 刷新一次内存信息,然后返回:
adb shell top -n 1
- 查询各进程内存使用情况:
adb shell procrank
- 杀死一个进程:
adb shell kill [pid]
- 查看进程列表:
adb shell ps
- 查看指定进程状态:
adb shell ps -x [pid]
- 查看后台services信息:
adb shell service list
- 查看当前内存占用:
adb shell cat /proc/meminfo
- 查看io内存分区:
adb shell cat /proc/iomem
- 将system分区重新挂载为可读写分区:
adb remount
- 从本地复制文件到设备:
adb push <local> <remote>
- 从设备复制文件到本地:
adb pull <remote> <local>
- 列出目录下的文件和文件夹,等同于dos中的dir命令:
adb shell ls
- 进入文件夹,等同于dos中的cd 命令:
adb shell cd <folder>
- 重命名文件:
adb shell rename path/oldfilename path/newfilename
- 删除system/avi.apk:
adb shell rm /system/avi.apk
- 删除文件夹及其下面所有文件:
adb shell rm -r <folder>
- 移动文件:
adb shell mv path/file newpath/file
- 设置文件权限:
adb shell chmod 777 /system/fonts/droidsansfallback.ttf
- 新建文件夹:
adb shell mkdir path/foldelname
- 查看文件内容:
adb shell cat <file>
- 查看wifi密码:
adb shell cat /data/misc/wifi/*.conf
- 清除log缓存:
adb logcat -c
- 查看bug报告:
adb bugreport
- 获取设备名称:
adb shell cat /system/build.prop
- 查看adb帮助:
adb help
- 跑monkey:
adb shell monkey -v -p your.package.name 500
adb -s 192.168.244.151:5555 shell monkey -v -p com.bolexim 500
八.附表
下表中, 箭头左边为keycode值,箭头右边为keycode的含义,部分用中文标注
0 –> “keycode_unknown” 1 –> “keycode_menu” 2 –> “keycode_soft_right” 3 –> “keycode_home” //home键 4 –> “keycode_back” //返回键 5 –> “keycode_call” 6 –> “keycode_endcall” 7 –> “keycode_0” //数字键0 8 –> “keycode_1” 9 –> “keycode_2” 10 –> “keycode_3” 11 –> “keycode_4” 12 –> “keycode_5” 13 –> “keycode_6” 14 –> “keycode_7” 15 –> “keycode_8” 16 –> “keycode_9” 17 –> “keycode_star” 18 –> “keycode_pound” 19 –> “keycode_dpad_up” 20 –> “keycode_dpad_down” 21 –> “keycode_dpad_left” 22 –> “keycode_dpad_right” 23 –> “keycode_dpad_center” 24 –> “keycode_volume_up” //音量键+ 25 –> “keycode_volume_down” //音量键- 26 –> “keycode_power” //power键 27 –> “keycode_camera” 28 –> “keycode_clear” 29 –> “keycode_a” //字母键a 30 –> “keycode_b” 31 –> “keycode_c” 32 –> “keycode_d” 33 –> “keycode_e” 34 –> “keycode_f” 35 –> “keycode_g” 36 –> “keycode_h” 37 –> “keycode_i” 38 –> “keycode_j” 39 –> “keycode_k” 40 –> “keycode_l” 41 –> “keycode_m” 42 –> “keycode_n” 43 –> “keycode_o” 44 –> “keycode_p” 45 –> “keycode_q” 46 –> “keycode_r” 47 –> “keycode_s” 48 –> “keycode_t” 49 –> “keycode_u” 50 –> “keycode_v” 51 –> “keycode_w” 52 –> “keycode_x” 53 –> “keycode_y” 54 –> “keycode_z” 55 –> “keycode_comma” 56 –> “keycode_period” 57 –> “keycode_alt_left” 58 –> “keycode_alt_right” 59 –> “keycode_shift_left” 60 –> “keycode_shift_right” 61 -> “keycode_tab” 62 –> “keycode_space” 63 –> “keycode_sym” 64 –> “keycode_explorer” 65 –> “keycode_envelope” 66 –> “keycode_enter” //回车键 67 –> “keycode_del” 68 –> “keycode_grave” 69 –> “keycode_minus” 70 –> “keycode_equals” 71 –> “keycode_left_bracket” 72 –> “keycode_right_bracket” 73 –> “keycode_backslash” 74 –> “keycode_semicolon” 75 –> “keycode_apostrophe” 76 –> “keycode_slash” 77 –> “keycode_at” 78 –> “keycode_num” 79 –> “keycode_headsethook” 80 –> “keycode_focus” 81 –> “keycode_plus” 82 –> “keycode_menu” 83 –> “keycode_notification” 84 –> “keycode_search”
推荐阅读