Skip to content

Instantly share code, notes, and snippets.

View zaihuishou's full-sized avatar
💭
hard working

json tang zaihuishou

💭
hard working
  • free
  • chengdu
View GitHub Profile
@zaihuishou
zaihuishou / EndlessRecyclerOnScrollListener.java
Created October 15, 2015 05:58 — forked from ssinss/EndlessRecyclerOnScrollListener.java
Endless RecyclerView OnScrollListener
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
public abstract class EndlessRecyclerOnScrollListener extends RecyclerView.OnScrollListener {
public static String TAG = EndlessRecyclerOnScrollListener.class.getSimpleName();
private int previousTotal = 0; // The total number of items in the dataset after the last load
private boolean loading = true; // True if we are still waiting for the last set of data to load.
private int visibleThreshold = 5; // The minimum amount of items to have below your current scroll position before loading more.
int firstVisibleItem, visibleItemCount, totalItemCount;