DevAhamed / MultiViewAdapter

Easily create complex recyclerview adapters in android
https://devahamed.github.io/MultiViewAdapter
Apache License 2.0
818 stars 148 forks source link

InfiniteScroll not working for horizontal recycler view #111

Open nogipx opened 4 years ago

nogipx commented 4 years ago

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

DevAhamed commented 4 years ago

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