0

I have a recyclerview with over 800 items in it.

When the recyclerview loads on the screen, i want the bottom of the list to display but it does the scrolling animation, which could take a while...

How to do it without animation?

Lena Bru
  • 13,521
  • 11
  • 61
  • 126

2 Answers2

0

Use recyclerView.scrollToPosition(int position) and enter the last position of your recycler view.

Izak
  • 909
  • 9
  • 24
0

Try this :

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

Or checkout another way : https://www.stackoverflow.com/a/27069845

Anonymous
  • 2,184
  • 15
  • 23