Reputation: 1874
Which RecyclerView
function returns max Scroll offset?
I need to determine, can i hide footer of Activity
or not, by RecyclerView
scroll.
Upvotes: 8
Views: 7449
Reputation: 2764
The asked function is recyclerView.computeVerticalScrollRange();
This function returns true if end of scrolling reached.
static private boolean isMaxScrollReached(RecyclerView recyclerView) {
int maxScroll = recyclerView.computeVerticalScrollRange();
int currentScroll = recyclerView.computeVerticalScrollOffset() + recyclerView.computeVerticalScrollExtent();
return currentScroll >= maxScroll;
}
Upvotes: 23