1

How to cancel recyclerView scroll? I don't need let recyclerView to scroll!

I try to do recyclerView.setFocusable(false), but it doesn't work!

jarlh
  • 40,041
  • 8
  • 39
  • 58
Yat3s
  • 330
  • 1
  • 11
  • you can override canScrollHorizontall/Vertically methods in your LayoutManager and return false. Also override onFocusSearchFailed and do nothing there as well. – yigit Nov 14 '15 at 22:32
  • thanks @yigit this work nice – Yat3s Nov 15 '15 at 06:24

1 Answers1

3

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

Hossein Rashno
  • 2,677
  • 1
  • 22
  • 45