嘿,今天的你过的还好吗
直接外边套一个RelativeLayout
加一个属性
android:descendantFocusability="blocksDescendants"
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/life_rv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusableInTouchMode="false"
android:scrollbars="none" />
</RelativeLayout>
//禁止recyclerView嵌套滑动
mBinding.lifeIndexLayout.lifeRv.setNestedScrollingEnabled( false);