adb常用命令
1、查看包和程序名
方式一(输出信息较少,推荐)
adb shell dumpsys window windows | findstr mFocusedApp
方式二(通过日志,输出信息较多)
adb logcat | findstr START
2、冷启动
#启动app
adb shell am start -W -n package/activity
#停止app
adb shell am force-stop package
3、热启动
#启动app adb shell am start -W -n package/activity #停止app,区别于冷启动,通过back键退出 adb shell input keyevent 3
4、CPU
#查看对app对cpu的占用情况
adb shell dumpsys cpuinfo | findstr package
5、流量
#先查看进程ID adb shell ps | findstr package #通过PID获取流量信息,pid是第一步查到的PID adb shell cat /proc/pid/net/dev
6、电量
#获取电量
adb shell dumpsys battery
#切换为非充电状态
adb shell dumpsys battery set status 1
7、内存
#查看实时进程状态
adb shell top
Ps:
VSS - 虚拟耗用内存
RSS - 实际使用物理内存
windows的dos下查看的是RES、SHR
N、