- 解决ScrollView嵌套recyclerview滑动和显示问
- ScrollView嵌套Recyclerview显示不全问题
- ScrollView中Recyclerview踩坑
- ScrollView嵌套RecyclerView显示不完整,以及
- ScrollView与RecyclerView嵌套使用时,列表滑
- RecyclerView的item中嵌套Scrollview的滑
- 解决ScrollView嵌套RecyclerView 滑动卡顿问
- Android ScrollView嵌套Recyclerview
- 解决ScrollView嵌套RecyclerView 滑动卡顿问
- ScrollView嵌套Recyclerview显示不全问题
在recycleview外加一层相对布局,binding.rvPeihuoDetail.setNestedScrollingEnabled(false);
```
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants">
android:id="@+id/rv_peihuo_detail"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>
```
网友评论