How may I get all children of an item of ListView ? There are methods to get child at position but I was not able to find any method which returns collectio
ListView
I guess if your items in the ListView are of type ViewGroup you could do the following
ViewGroup
ArrayList children = new ArrayList(); for (int i = item.getChildCount() - 1 ; i>=0; i--) { children.add(item.getChildAt(i)); }