Is it possible to search the hierarchy of View and get Views of particular type?

Equivalently to getElementsByTagName in JS

defined like this:

public ArrayList<T> getElementsByTagName(View v, Class<T>){
    ....
}

called similar to this:

ArrayList<TextView> labels = getElementsByTagName(parentView, TextView.class);
link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

ViewGroup has getChildCount() and getChildAt() so you can traverse the tree and filter the children you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.