Skip to content

Instantly share code, notes, and snippets.

@gavelez
Created October 15, 2020 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gavelez/b6f709ac1ffc582134b65512e2521d13 to your computer and use it in GitHub Desktop.
Save gavelez/b6f709ac1ffc582134b65512e2521d13 to your computer and use it in GitHub Desktop.
Scroll Multiple RecyclerViews
recyclerView.addOnScrollListener(
new RecyclerView.OnScrollListener() {
@Override public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
super.onScrolled(recyclerView, dx, dy);
if (isLastItemDisplaying(recyclerView)) {
//Calling the method getdata again getData();
}
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment