adb命令
查看顶层应用报名
adb shell dumpsys window | findStr mFocused

查看应用实时CPU占用res内存占用
adb shell top 加上 -p 16350就能捕捉指定进程

查看应用的activate是否存在异常增长,不销毁
adb shell dumpsys meminfo tv.danmaku.bili | findStr Activities

查看真实的内存使用情况,比adb shell top的res更真实,一般情况下adb shell top的res比这个要大一点
adb shell dumpsys meminfo tv.danmaku.bili

查看当前应用的类名
adb shell dumpsys window | findstr -i "mCurrentFocus mFocusedApp Focused"

监控app启动耗时
adb shell am start -W tv.danmaku.bili/.MainActivityV2

监控电池电量及温度
adb shell dumpsys battery

监控cpu温度
adb shell cat /sys/class/thermal/thermal_zone1/temp


浙公网安备 33010602011771号