how to get child from linearlayout on androidrefer to:lautturi.com
LinearLayout layout = setupLayout();
int count = layout.getChildCount();
View v = null;
for(int i=0; i<count; i++) {
v = layout.getChildAt(i); // get child elements from LinearLayout
}