How to scroll to the bottom of a RecyclerView? scrollToPosition doesn’t work

I was looking at this post to find the answer but… I think everyone on this post was facing the same scenario as me: scrollToPosition() was fully ignored, for an evident reason.

What I was using?

recyclerView.scrollToPosition(items.size());

… what WORKED?

recyclerView.scrollToPosition(items.size() - 1);

Leave a Comment