有谁知道是否有办法在android studio项目中查看所有视图,LinearLayout,TextView等?
我在android设备监视器中使用Hierarchy Viewer来使用xml merge标签修剪一些不必要的视图,而我通过显示之前和之后的计数来显示这些视图实际上已被删除。到目前为止,我是从树视图中手动计数它们的,而且速度很慢。
最佳答案
您可以这样做:
LinearLayout llParent = (LinearLayout)findViewById(R.id.llParent);;
int childViewCount = llParent.getChildCount();
希望对您有帮助。