How to get all Views in an Activity?

后端 未结 5 627
太阳男子
太阳男子 2020-12-18 23:21

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

5条回答
  •  遥遥无期
    2020-12-18 23:46

    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.

提交回复
热议问题