Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我ViewServer用来检查我的应用程序中的布局。我单击一个按钮,它显示PopupWindow为下拉菜单。但是我看不到弹出窗口的布局HierarchyViewer。
ViewServer
PopupWindow
HierarchyViewer
有什么帮助吗?
显示窗口后,添加以下语句并重新启动 HierarchyViewer。它应该显示您的弹出窗口内容。
ViewServer.get(context).addWindow(popupWindow.getContentView(), "popup");
在您的 onDismissListener 上,添加以下语句以从 hierarchyviewer 中删除视图。
ViewServer.get(context).removeWindow(window.getContentView());