有没有办法知道布局中有多少对象(textview或按钮orimageview等)。当然有办法,但我不知道如何开始。
答案 0 :(得分:2)
您可以使用以下递归方法执行此操作:
public int getChildrenCount(ViewGroup parent, Class type) {
int count = 0;
for(int i=0; i<parent.getChildCount(); i++) {
View child = parent.getChildAt(i);
if(child instanceof ViewGroup) {
count += getChildrenCount((ViewGroup) child, type);
}
else {
if(child.getClass() == type) {
// Try to find element name in XML layout
for(Field field : R.id.class.getDeclaredFields()) {
try {
int id = field.getInt(null);
if(id == child.getId()) {
String childName = field.getName();
}
} catch (Exception e) {
// error handling
}
}
//
count++;
}
}
}
return count;
}
例如,要查找TextView
布局中的所有activity_main
子项:
ViewGroup parent = (ViewGroup) LayoutInflater.from(this).inflate(R.layout.activity_main, null);
int count = getChildrenCount(parent, TextView.class);
答案 1 :(得分:0)
您可以使用getChildCount()和getChildAt()
找到答案例如:
RelativeLayout fl = new RelativeLayout(this);
int childCount = fl.getChildCount();
int buttonCount = 0;
for (int i = 0; i < childCount; i++) {
if(fl.getChildAt(i) instanceof Button){
buttonCount++;
}
}
注意:此方法仅检查ViewGroup的直接子级/后代。