adb 常用命令解析
测试开发社区
共 2272字,需浏览 5分钟
·
2022-06-13 01:19
adb devices
adb install xx.apk
adb shell dumpsys window | findstr mCurrentFocus
adb shell monkey -p 包名 -v -v -v 200>D:AAlog.txt
app启动时间
adb shell am start com.android.settings/.HWSettings
通过wifi连接手机
adb connect 手机IP地址:5555
adb shell am start -a android.intent.action.MAIN -n com.android.settings/.wifi.WifiSettings
adb shell am start -a android.settings.BLUETOOTH_SETTINGS
adb shell svc bluetooth enable
adb shell svc bluetooth disable
adb shell am start -a android.intent.action.CALL tel:10086
adb shell input keyevent KEYCODE_ENDCALL
adb -s 设备id <command>
adb shell am start -a android.intent.action.MAIN -n com.android.phone/.settings.MobileNetworkSettings
adb shell am start -a android.intent.action.MAIN -n com.android.contacts/.activities.TwelveKeyDialer
进入手机移动网络页面
adb -s AC9XKK shell am start -a android.intent.action.MAIN -n com.android.phone/com.android.phone.MobileNetworkSettings
增加音量:
adb shell input keyevent 24
降低音量:
adb shell input keyevent 25
播放/暂停:
adb shell input keyevent 85
停止播放:
adb shell input keyevent 86
滑动解锁
adb shell input swipe 300 1000 300 500
打开手机设置页面
adb shell am start com.android.settings/com.android.settings.Settings
查看手机信息
录制视频
adb shell screenrecord /sdcard/demo.mp4
adb logcat *:W
查看进程
adb shell ps
查看实时资源占用情况
adb shell top
adb shell input keyevent 3
adb shell input text hello
评论