在Android
中是否有任何方法可以获得类似Map和List的内容或任何其他集合对象,它们为我们提供了所有字段的对象(如Text-view,Edit-text,Button和任何其他小部件)已在Activity
使用或初始化?
答案 0 :(得分:3)
您需要做的是使用getViewById()
在您的xml中保留您的根视图,然后使用getChildCount()
和getChildAt()
递归获取其子视图,直到您拥有它们为止所有。
请注意,getChildCount
方法仅适用于ViewGroups
(LinearLayout
,RelativeLayout
,...等等。
查看here可能的duplate。