Google分页组件在nestedscrollview中不起作用

时间:2019-05-16 07:25:22

标签: android kotlin pagination nestedscrollview

使用Google Paging Library进行分页。在我的情况下,我需要将孔视图放入内部 nestedscrollview。但是分页库是如此之快地加载所有数据,直到用户向下滚动
这是我的视图xml代码。和recyclerViewHomeProduct进行分页

      <androidx.core.widget.NestedScrollView
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

            <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical">

                <androidx.recyclerview.widget.RecyclerView
                        android:id="@+id/recyclerViewHomeUserSuggestions"
                        android:layout_width="match_parent"
                        android:scrollbars="none"
                        android:layout_height="wrap_content"/>


                <androidx.recyclerview.widget.RecyclerView
                        android:id="@+id/recyclerViewHomeProduct"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_marginTop="3dp"/>


            </LinearLayout>


        </androidx.core.widget.NestedScrollView>

我尝试了一些其他方法,例如SmartNestedScrollView,但这不能完全解决问题。

0 个答案:

没有答案