将以下代码添加至 WindowManagerService的dump 方法中 :
if(args.length>=1 && args[0].equals("a1")){
pw.println("RootWindowContainer ChildCount "+ mRoot.getChildCount());
mRoot.forAllWindows((w) -> {
pw.println(w.getName());
}, true /* traverseTopToBottom */);
return ;
}
编译安装之后运行如下指令:
adb shell dumpsys window a1
会有如下输出:
RootWindowContainer ChildCount 1
51620fc NavigationBar0
ffc418 NotificationShade
4db10ad StatusBar
5d3b93 AssistPreviewPanel
1622595 InputMethod
96436b com.example.test2/com.example.test2.Alert
f91455a com.example.test2/com.example.test2.SecondActivity
37ae4c3 com.android.launcher3/com.android.launcher3.uioverrides.QuickstepLauncher
5c50dae com.android.systemui.ImageWallpaper
这样我们就可以知道系统当前打开了多少个窗口,当然也可以查看一个应用打开了哪些窗口。
也可以使用如下方法:
if(args.length>=1 && args[0].equals("a2")){
int i =1;
Collection<WindowState> wins = mWindowMap.values();
for(WindowState a: wins){
pw.println(i+": "+a.getAttrs().getTitle());
i++;
}
return ;
}
adb shell dumpsys window a2