ADB命令

功能 命令
查看设备品牌 adb shell getprop ro.product.brand
查看设备型号 adb shell getprop ro.product.model
查看SDK版本 adb shell getprop ro.build.version.sdk
查看系统版本 adb shell getprop ro.build.version.release
查看设备序列号 adb get-serialno
查看前当前Activity adb shell dumpsys window | grep mCurrentFocus
查看设备AndroidId adb shell settings get secure android_id
查看IP地址 adb shell ifconfig | grep Mask
查看Mac地址 adb shell "ip addr show wlan0 | grep 'link/ether '| cut -d' ' -f6"
重启手机 adb reboot
Home键 adb shell input keyevent 3
返回键 adb shell input keyevent 4
菜单键 adb shell input keyevent 82
增加音量 adb shell input keyevent 24
减少音量 adb shell input keyevent 25
电源键 adb shell input keyevent 26
切换应用 adb shell input keyevent 187
向上滑动 adb shell input swipe 300 1300 300 300
向下滑动 adb shell input swipe 300 300 300 1300
向左滑动 adb shell input swipe 900 300 100 300
向右滑动 adb shell input swipe 100 300 900 300
截图保存到电脑 adb shell screencap -p /sdcard/screenshot.png && adb pull /sdcard/screenshot.png /Users/xxx/Desktop/screenshot.png
posted @ 2022-08-10 09:36  南极冰川雪  阅读(73)  评论(0编辑  收藏  举报