1

As we know we have option ListView.TRANSCRIPT_MODE_ALWAYS SCROLL which will scroll to bottom.

The list will automatically scroll to the bottom, no matter what items are currently visible.

Now we are having RecyclerView, does there any similar option of this in RecyclerView?

Ravi
  • 34,851
  • 21
  • 122
  • 183

1 Answers1

0

You can use

recycler_view.scrollToPosition(int position);

where position is index of row in recycle view.

Sangram Haladkar
  • 707
  • 9
  • 22