android – Recyclerview同时绑定所有视图

前端之家收集整理的这篇文章主要介绍了android – Recyclerview同时绑定所有视图前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在另一个再循环视图(使用LinearLayoutManager)中有一个垂直回收器视图(带有GridLayoutManager).我现在遇到的问题是,内部的回收器视图(与GridLayoutManager)同时绑定所有的项目,甚至当前不在屏幕上的视图(onBindViewHolder()被调用它的所有项目).

为了给你更多的信息,在我的布局文件中,我把回收器视图的高度设为wrap_content.

我认为问题是,由于有2个嵌套的垂直回收器,当父RV想要测量其孩子并且孩子是另一个RV时,在onMeasure()中,它计算整个RV所需的大小,而不仅仅是它的部分想绑定在屏幕上.

任何想法如何解决

这是我的外部回收器视图的布局文件

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5.  
  6. <android.support.v7.widget.RecyclerView
  7. android:id="@+id/component_list"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"/>
  10.  
  11. </FrameLayout>

这里是我内部回顾者视图的代码

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:id="@+id/container"
  3. android:orientation="vertical"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:paddingTop="@dimen/gutter"
  7. android:paddingBottom="@dimen/gutter">
  8.  
  9. <TextView
  10. android:id="@+id/title_text"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_marginBottom="@dimen/gutter"
  14. android:textSize="30sp"
  15. android:textColor="@android:color/white"
  16. android:fontFamily="sans-serif-thin"/>
  17.  
  18. <android.support.v7.widget.RecyclerView
  19. android:id="@+id/my_slider"
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"/>
  22.  
  23. </LinearLayout>

P.S .:我正在使用这个适配器委托作为我的外部回收器视图:
https://github.com/sockeqwe/AdapterDelegates

解决方法

我认为嵌套的回收利用是一个非常糟糕的主意.当我尝试滚动,哪个回收器视图必须回应scolling,parrent或小孩.

这就是为什么我认为你在寻找ExpandableListView?这仅限于两个级别的列表,但这听起来像是为您的需要而工作).它也解决了问题的解决.

它看起来像这样:

编辑:甚至可以嵌套ExpandableListViews:

编辑:检查this lib水平扫描

猜你在找的Android相关文章