- 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