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?
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?
Use recyclerView.scrollToPosition(int position)
and enter the last position of your recycler view.
Try this :
recyclerView.scrollToPosition(items.size() - 1);
Or checkout another way : https://www.stackoverflow.com/a/27069845