0

有没有办法知道布局中有多少某种类型的对象(文本视图或按钮或图像视图等)。当然有办法,但我不知道如何开始。

4

2 回答 2

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);
于 2013-01-21T09:01:38.513 回答
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 的直接子项/后代。

于 2013-01-21T08:43:35.493 回答