я использую 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
Но это не то, что полностью решило бы проблему.