Created
October 15, 2020 18:21
-
-
Save gavelez/b6f709ac1ffc582134b65512e2521d13 to your computer and use it in GitHub Desktop.
Scroll Multiple RecyclerViews
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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