Android:从视图中获取视图组?
Posted
技术标签:
【中文标题】Android:从视图中获取视图组?【英文标题】:Android: get Viewgroup from the view? 【发布时间】:2013-07-18 20:43:38 【问题描述】:有没有办法从视图中获取 ViewGroup?我正在尝试创建一个自定义数组适配器,它需要视图组
【问题讨论】:
【参考方案1】:根据您所追求的ViewGroup
,您可以获得视图的父级并将其转换为ViewGroup
:
(ViewGroup)view.getParent() // this can be done to get any level in your view hierarchy
或者您可以将视图本身转换为 ViewGroup
:
(ViewGroup)view
基本上,在视图层次结构中找到您想要的视图并将其转换为ViewGroup
【讨论】:
以上是关于Android:从视图中获取视图组?的主要内容,如果未能解决你的问题,请参考以下文章