如何获取相同视图组件的列表

Posted

技术标签:

【中文标题】如何获取相同视图组件的列表【英文标题】:How to take a list of identical view components 【发布时间】:2021-07-04 11:51:41 【问题描述】:

是否有可能以某种方式获取当前 Activity 中的数组,例如 TextView,或者是否需要获取每个视图?

【问题讨论】:

【参考方案1】:

您可以通过以下方式以编程方式获取 xml 的所有视图:

绑定你的视图组/父布局

那么子View可以在if条件下访问

val container = findViewById(R.id.container) as ViewGroup

     for (i in 0 until container.childCount) 
         val v = container.getChildAt(i)
         if (v is Button) 
             // You will get Button here
         
         else if(v is TextView)
             // You will get textView here
                  
     

【讨论】:

你能用Java写这段代码吗?)) ViewGroup container = (ViewGroup) findViewById(R.id.container); for (int i = 0; i < container.getChildCount(); i++) View v = container.getChildAt(i); if (!(v instanceof Button)) else

以上是关于如何获取相同视图组件的列表的主要内容,如果未能解决你的问题,请参考以下文章

如何等待视图组件的 Vuex 状态初始化?

如何使用Vue从父级中的多个子组件中获取值?

如何获取剑道列表视图数据项计数

ios如何获取视图中的子视图列表? [关闭]

如何从列表视图中获取值

绑定视图 - 如何从子列表中获取父属性的详细信息