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.
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.
RecyclerView
has a stopScroll() method to stop a scroll in progress.
Refer doc: https://developer.android.com/reference/android/support/v7/widget/RecyclerView.html