aryaxt
aryaxt

Reputation: 77616

How to get all Views in an Activity?

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

for example something like

for (View v : this)
{
     //do something with the views 
     //depending on the types (button, image , etc)
}

Upvotes: 17

Views: 25413

Answers (5)

Stanislav Kinzl
Stanislav Kinzl

Reputation: 420

Nice way to do this in Kotlin recursivelly:

private fun View.getAllViews(): List<View> {
    if (this !is ViewGroup || childCount == 0) return listOf(this)

    return children
            .toList()
            .flatMap { it.getAllViews() }
            .plus(this as View)
}

Upvotes: 1

Martin B
Martin B

Reputation: 367

To be specific:

private void show_children(View v) {
    ViewGroup viewgroup=(ViewGroup)v;
    for (int i=0;i<viewgroup.getChildCount();i++) {
        View v1=viewgroup.getChildAt(i);
        if (v1 instanceof ViewGroup) show_children(v1);
        Log.d("APPNAME",v1.toString());
    }
}

And then use the function somewhere:

show_children(getWindow().getDecorView());

to show all Views in the current Activity.

Upvotes: 12

Michael Simonds
Michael Simonds

Reputation: 11

You can use the hierarchyviewer, It allows you to see the view hierarchy including those created in code. It's primary reason is for debugging things like this. The latest Android Studio now has this feature in the Device Monitor that lets you make a dump of the UI to debug it.

Upvotes: 0

Jabeer
Jabeer

Reputation: 21

Try to find all view associated with the Activity.

give the following command.

ViewGroup viewgroup=(ViewGroup)view.getParent();
viewgroup.getchildcount();

iterate through the loop.

We will get the Result.

Upvotes: 2

CommonsWare
CommonsWare

Reputation: 1006914

is there a way to get every view that is inside my activity?

Get your root View, cast it to a ViewGroup, call getChildCount() and getChildAt(), and recurse as needed.

I have over 200 views including buttons, and images, so i want to be able to access them by using a loop

That is a rather large number of Views.

Upvotes: 30

Related Questions