is there a way to get every view that is inside my activity? I have over 200 views including buttons, and images, so i want to be able to access them by using a loop
To be specific:
private void show_children(View v) { ViewGroup viewgroup=(ViewGroup)v; for (int i=0;i
And then use the function somewhere:
show_children(getWindow().getDecorView());
to show all Views in the current Activity.