1、窗口信息
adb shell dumpsys window windows > w.txt
2、dump当前可见的窗口activity
-
windows系统
adb shell dumpsys activity | findStr mFocus
-
mac系统
adb shell dumpsys activity | grep mFocus
3、dump当前处于栈顶的activity
-
windows系统
adb shell dumpsys activity | findstr mTop
-
mac系统
adb shell dumpsys activity | grep mTop
这个我经常用,基本上80%奏效
待补充。。。折叠屏上有个命令失效