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
  • 42,561
  • 8
  • 45
  • 63
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
  • 3,073
  • 1
  • 25
  • 49