Alpha
Alpha

Reputation: 1874

Android RecyclerView max scroll offset

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

Answers (1)

Alexander Skvortsov
Alexander Skvortsov

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

Related Questions