ExpandableRecyclerView
ExpandableRecyclerView copied to clipboard
在fragment中使用ExpandableRecyclerView时,无法展开。
https://github.com/Xigong93/ExpandableRecyclerView/assets/35283449/167528da-151b-4dff-8547-0bd0713e46d4
在fragment中使用ExpandableRecyclerView时,只有一个分组时显示异常
是不是高度没有设置MatchParent呢?
错怪作者了,看了源码,看到StickyHeaderRecyclerViewContainer 将ExpandableRecyclerView包起来了,于是我在fragment中也这样做,抱着试一试的心态,结果解决动画异常和分组的item不显示问题,方法如下: ` <pokercc.android.expandablerecyclerview.StickyHeaderRecyclerViewContainer xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent">
<pokercc.android.expandablerecyclerview.ExpandableRecyclerView android:id="@+id/recycler_view" android:layout_width="match_parent" android:layout_height="match_parent" /> </pokercc.android.expandablerecyclerview.StickyHeaderRecyclerViewContainer>`