赞
踩
Android Debug Bridge (ADB) 是一个多功能命令行工具,它允许你与连接的 Android 设备或虚拟设备进行通信。ADB 是 Android SDK 的一部分,广泛用于开发和调试。以下是一些常用的 ADB 命令及其用法:
adb start-server
adb kill-server
adb devices
adb version
adb install 路径/到/你的/app.apk
adb uninstall 应用的包名
adb shell pm clear 应用的包名
adb shell am force-stop 应用的包名
adb shell am start -n 包名/活动名
adb push 本地文件路径 /设备上的路径
adb pull /设备上的文件路径 本地路径
adb logcat
adb shell screencap -p /sdcard/screenshot.png
adb pull /sdcard/screenshot.png 本地路径
adb shell screenrecord /sdcard/录制文件.mp4
注意:录制时间默认为180秒,最长可设置为3分钟。
adb shell
进入后,你可以执行Linux
命令。
adb tcpip 5555
adb connect 设备的IP地址:5555
ip addr show wlan0
adb shell input keyevent 按键代码
例如,模拟按下返回键(KEYCODE_BACK
的值为4):
adb shell input keyevent 4
adb shell input tap x坐标 y坐标
adb shell input swipe 起始x 起始y 结束x 结束y [持续时间ms]
ADB 命令非常强大,这里只列出了一些最常用的命令。不同的命令可以组合在一起,实现复杂的操作和自动化脚本。在使用某些特殊命令时,可能需要设备具备 root 权限或启用开发者选项中的特定设置。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。