0

How can I prevent a recycler view from scrolling up?

For example: If I have a recycler view with 20 items and scroll to item 10, I need to block the users from scrolling up again but allow them to scroll down.

Gabriel Hobold
  • 693
  • 6
  • 16

1 Answers1

0

RecyclerView has a stopScroll() method to stop a scroll in progress.

Refer doc: https://developer.android.com/reference/android/support/v7/widget/RecyclerView.html

enter image description here

Gowthaman M
  • 8,057
  • 8
  • 35
  • 54