MultiViewAdapter icon indicating copy to clipboard operation
MultiViewAdapter copied to clipboard

InfiniteScroll not working for horizontal recycler view

Open nogipx opened this issue 5 years ago • 1 comments

  • 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

nogipx avatar Dec 10 '19 15:12 nogipx

Hi, Thanks for reporting this issue. Will try to ship out the fix in next release.

DevAhamed avatar Dec 11 '19 03:12 DevAhamed