为了给你更多的信息,在我的布局文件中,我把回收器视图的高度设为wrap_content.
我认为问题是,由于有2个嵌套的垂直回收器,当父RV想要测量其孩子并且孩子是另一个RV时,在onMeasure()中,它计算整个RV所需的大小,而不仅仅是它的部分想绑定在屏幕上.
任何想法如何解决?
这是我的外部回收器视图的布局文件:
<?xml version="1.0" enCoding="utf-8"?><FrameLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:layout_wIDth="match_parent"androID:layout_height="match_parent"><androID.support.v7.Widget.RecyclerVIEw androID:ID="@+ID/component_List" androID:layout_wIDth="match_parent" androID:layout_height="match_parent"/></FrameLayout>
这里是我内部回顾者视图的代码:
<linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:ID="@+ID/container"androID:orIEntation="vertical"androID:layout_wIDth="match_parent"androID:layout_height="wrap_content"androID:paddingtop="@dimen/gutter"androID:paddingBottom="@dimen/gutter"><TextVIEw androID:ID="@+ID/Title_text" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_marginBottom="@dimen/gutter" androID:textSize="30sp" androID:textcolor="@androID:color/white" androID:FontFamily="sans-serif-thin"/><androID.support.v7.Widget.RecyclerVIEw androID:ID="@+ID/my_slIDer" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content"/></linearLayout>
P.S .:我正在使用这个适配器委托作为我的外部回收器视图:
https://github.com/sockeqwe/AdapterDelegates
这就是为什么我认为你在寻找ExpandableListView?这仅限于两个级别的列表,但这听起来像是为您的需要而工作).它也解决了问题的解决.
它看起来像这样:
编辑:甚至可以嵌套ExpandableListVIEws:
编辑:检查this lib水平扫描
总结以上是内存溢出为你收集整理的android – Recyclerview同时绑定所有视图全部内容,希望文章能够帮你解决android – Recyclerview同时绑定所有视图所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)