RelativeLayout
extends ViewGroup
, который имеет методы getChildCount()
и getChildAt(int index)
. Так что вы можете попробовать это:
for(int i = 0; i < relativeLayout.getChildCount(); i++) {
View child = relativeLayout.getChildAt(i);
// your processing...
}