赞
踩
adb的全称为Android Debug Bridge,也就是安卓调试桥的意思,使用adb工具我们可以对安卓模拟器以及安卓手机进行调试
1.下载platform-tools
下载完成后解压到目录下
2.配置环境变量
根据自己的adb工具所在目录Path环境变量下添加一条路径
3.测试adb工具是否配置成功
显示版本号表示adb配置成功
#查看所有设备连接信息
adb devices
#连接安卓设备
adb connect ip:port
#导出手机文件到本地电脑路径
adb pull 设备文件路径 电脑文件路径
#将文件上传到设备
adb push D:\a.txt /data/local/
#模拟点击滑动,3秒内从右向左滑动800像素
adb shell input swipe 1000 1000 200 1000 3000
#模拟点击
adb shell input swipe 1000 1000 1000 1000 0
#输入文本(不支持中文输入)
adb shell input text “hehe”
#生成当前ui控件xml历史文件(默认生成路径为/sdcard,可以修改路径)
adb shell uiautomator dump /sdcard/ui.xmlui
#按键控制
adb shell input keyevent kycode
kycode:
进入拨号:5
home:3
back:4
向上翻页:92 向下:93
tab键:61
灭屏亮屏:26
解锁屏幕:82
#安装apk
adb install D:\a.apk
#卸载已安装的apk
1.查看apk包名
adb shell pm list packages
2.指定包名卸载
adb uninstall {packge}
#进入手机设备的shell环境
adb shell
#抓取日志
adb logcat -v time >d:/a.log
#重启设备
adb reboot
#查看adb版本
adb version
#adb查看安卓设备后台运行的服务
adb shell service list
#屏幕截图并保存
adb shell screencap -p /sdcard/a.png
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。