NestedScrollView嵌套RecyclerView滑动卡顿

没用VestedScrollView,RecyclerView外面套一个RelariveView,设置属性 android:descendantFocusability=“blocksDescendants”,就不卡顿了

   <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:descendantFocusability="blocksDescendants">

                    <androidx.recyclerview.widget.RecyclerView

                        android:id="@+id/home_recycler_products"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:nestedScrollingEnabled="false" />

                </RelativeLayout>

发布了33 篇原创文章 · 获赞 13 · 访问量 3万+

猜你喜欢

转载自blog.csdn.net/qq_38086836/article/details/104279010