Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个可展开的视图,其中父/可展开标题将有一个文本和下拉箭头。每个此类标题的子项应该是在网格结构中具有多个项目的视图。(有点像带有 GridLayoutManager 的回收器视图)。请找到随附的图像以供参考。
每一年都对应着组名,所展示的封面艺术对应着孩子们。
我们将有一个 ExpandableListView,适配器为getChildrenCount(int groupPosition)返回 1,而getChild(int groupPosition, int childPosition) 返回 null。ExpandableListView 的 childView 将有一个回收器视图。这是一种方法。[尝试和工作]
另一种方法可能是使用两个 RecyclerViews,我没有尝试过。具有线性布局管理器的父 RecyclerView 和具有网格布局管理器的子回收器视图。