美文网首页
使用NestedScrollView嵌套RecycleView

使用NestedScrollView嵌套RecycleView

作者: 卖炭少年炭治郎 | 来源:发表于2020-04-17 17:05 被阅读0次

使用原因

  • 项目需要。。。
  • 不推荐这么用,原因:链接

使用过程中的问题记录

xml布局文件如下

...
    <android.support.v4.widget.NestedScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">
            <TextView
                    android:padding="15dp"
                    android:layout_width="match_parent"
                    android:layout_height="150dp"
                    android:background="@color/colorAccent"
                    android:gravity="center"
                    android:text="嵌套在NestedScrollView里面的头部"
                    android:textColor="#fff"
                    android:textSize="20dp" />

            <android.support.v7.widget.RecyclerView
                    android:id="@+id/recyclerView"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"/>
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>
...

1.自动滚动问题

解决办法同ScrollView一样,在Scrollview包裹的子View添加如下属性:

      android:descendantFocusability="blocksDescendants"

2.RecycleView复用机制失效问题

  • 导致出现这种问题的原因:
    链接
  • 解决方案:高度写死(当然为了适配也不能这么干)。
    在视图完成初始化的时候,通过下面方式,获取到视图高度,设置给recycleView
  flContainer.viewTreeObserver.addOnGlobalLayoutListener (object:ViewTreeObserver.OnGlobalLayoutListener {
            override fun onGlobalLayout() {
                val height = flContainer.measuredHeight
                val layoutParams = recyclerView.layoutParams
                if (layoutParams.height<0){
                    layoutParams.height = height
                    recyclerView.layoutParams = layoutParams
                    flContainer.viewTreeObserver.removeOnGlobalLayoutListener(this)
                }
            }
        })

相关文章

网友评论

      本文标题:使用NestedScrollView嵌套RecycleView

      本文链接:https://www.haomeiwen.com/subject/afvyvhtx.html