Skip to content

Instantly share code, notes, and snippets.

@pedrovgs
Created July 30, 2015 15:08
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pedrovgs/91e386e0d9cf34da3015 to your computer and use it in GitHub Desktop.
Save pedrovgs/91e386e0d9cf34da3015 to your computer and use it in GitHub Desktop.
Utility class to implement a load more feature using a RecyclerView widget.
/*
* Copyright (C) 2015 Karumi.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.karumi.eci.common.ui.recyclerview.loadmore;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
/**
* RecyclerView.OnScrollListener extension used to notify when the user has scrolled close to
* the bottom of the list.
*/
public class LoadMoreDetector extends RecyclerView.OnScrollListener {
private final LinearLayoutManager layoutManager;
private boolean enabled;
private boolean loading;
private Listener listener;
public LoadMoreDetector(LinearLayoutManager layoutManager) {
this.layoutManager = layoutManager;
this.enabled = true;
}
public void setListener(Listener listener) {
this.listener = listener;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
public void setLoading(boolean loading) {
this.loading = loading;
}
@Override public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
int visibleItemCount = layoutManager.getChildCount();
int totalItemCount = layoutManager.getItemCount();
int pastVisibleItems = layoutManager.findFirstVisibleItemPosition();
if (enabled && !loading) {
if ((visibleItemCount + pastVisibleItems) >= totalItemCount) {
if (listener != null) {
listener.onLoadMore();
loading = true;
}
}
}
}
public interface Listener {
void onLoadMore();
}
}
@lianddao
Copy link

Correct

if (listener != null) {
listener.onLoadMore();
loading = true;
}

To

if (listener != null) {
loading = true;
listener.onLoadMore();
}

Second pages after the problem is not correct

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment