使用安卓手机, 不得不提到adb工具

下面直接介绍一些adb常见命令

先在windows电脑安装adb.exe, 然后手机通过数据线和电脑连接

.\adb.exe devices:确认 ADB 连接是否正常, 返回手机设备编号就表示 ADB 连接正常

查看已经安装软件列表

# 列出所有软件
.\adb.exe shell pm list packages

# 列出系统软件
.\adb.exe shell pm list packages -s

# 列出其他软件
.\adb.exe shell pm list packages -3

# 列出已禁用软件
.\adb.exe shell pm list packages -d

# 列出已启用软件
.\adb.exe shell pm list packages -e

查看软件详细信息

# 查看软件详细信息
.\adb.exe shell dumpsys package com.mipay.wallet

# 查看软件安装路径
.\adb.exe shell pm path com.mipay.wallet

停止软件运行

.\adb.exe shell am force-stop com.mipay.wallet

禁用软件

.\adb.exe shell pm disable-user com.mipay.wallet
#恢复
.\adb.exe shell pm enable com.mipay.wallet

卸载软件

.\adb.exe shell pm uninstall -k --user 0 com.mipay.wallet

重启

.\adb.exe reboot

文件操作

#拉取文件至本地
adb pull <文件的设备路径> <文件的本地路径> 

#推动文件至设备
adb push <文件的本地路径> <文件的设备路径>

调试

启动ADB服务

adb start-server

关闭ADB服务

adb kill-server

查看设备日志,具体参数可通过adb logcat --help查看

adb logcat

安装卸载

安装应用
adb install  
卸载应用
adb uninstall   

性能

查看进程

adb shell ps

实时查询资源占用情况

adb shell top

查看CPU信息

adb shell dumpsys cpuifo

查看内存信息

adb shell dumpsys meminfo

查看电池信息

adb shell dumpsys battery

执行Monkey测试,具体参数可通过adb shell monkey查看

adb shell monkey -p

其它

进入Shell模式

adb shell

截屏

adb shell screencap

录屏

adb shell screenrecord

查看手机IP地址

adb shell ifconfig

模拟键盘输入

adb shell input text 'hahahah'