最近在开发游戏平板上相关的app,遇到有些展示效果和预想不一致,想看一下树形图。结果树形图 不能展示,在网上查资料。最后发现解决方式。
在 基类 BaseActivity.java 的 onCreate 方法中加上:
ViewServer.get(this).addWindow(this);
在onDestroy 方法中加上:
ViewServer.get(this).removeWindow(this);
再次运行 tools 目录下的 hierarchyviewer.bat ,成功。