ScrollView嵌套RV,滑动有阻力不顺滑怎么办?

android:nestedScrollingEnabled=“false”
启用嵌套滚动的属性设为false

 <androidx.recyclerview.widget.RecyclerView
                        android:id="@+id/lv_service_custom_detail_down"
                        android:nestedScrollingEnabled="false"
                        android:background="@color/white"
                        android:paddingLeft="0dp"
                        android:visibility="visible"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content">

                    </androidx.recyclerview.widget.RecyclerView>

猜你喜欢

转载自blog.csdn.net/xiyangyang8110/article/details/126122706