NestedScrollView嵌套RecyclerView 高度失效的原因

当NestedScrollView嵌套RecyclerView时,可能出现高度失效的问题。原因包括:LinearLayout的高度设置失效,RecyclerView的缓存问题。NestedScrollView的measureChildWithMargins方法与LinearLayout的MeasureSpecMode为UNSPECIFIED有关,导致RecyclerView在MATCH_PARENT或WRAP_CONTENT情况下,其MeasureSpecMode变为UNSPECIFIED。在RecyclerView的fill方法中,若layoutState.mInfinite为true,会填充所有数据,从而导致高度失效。
摘要由CSDN通过智能技术生成
<androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"

        >
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="400dp">
            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/recyclerView"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@color/white"
                />
        </LinearLayout>

    </androidx.core.widget.NestedScrollView>

以上代码问题

1.LinearLayout设置的高失效

2.RecyclerView缓存失效

原因:

1. NestedScrollView覆写的measureChildWithMargins方法

 @Override
    protected void measureChildWithMargins(View child, int parentWi
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值