MultiViewAdapter
MultiViewAdapter copied to clipboard
InfiniteScroll not working for horizontal recycler view
- Android API level: 21
- Library Version: 3.0.0
- Recyclerview Version 1.0.0
InfiniteLoadingHelper.java
private static class InfiniteScrollListener extends RecyclerView.OnScrollListener {
@Override public void onScrolled(@NonNull RecyclerView recyclerView, int dx, int dy) {
if (dy > 0 && !loadingHelper.isLoading && loadingHelper.canLoadMore) {
For horizontal scrolling this condition is always false
Hi, Thanks for reporting this issue. Will try to ship out the fix in next release.