Answers for "android disable scroll recyclerview"

2

make recycler view non scrollable

//Override your LayoutManager's canScrollVertically::boolean
linearLayoutManager = new LinearLayoutManager(context) {
 @Override
 public boolean canScrollVertically() {
  return false;
 }
};
Posted by: Guest on June-14-2020
0

android recyclerview disable auto scroll

RecyclerView will scroll to focused item. Try recyclerView.setFocusable(false)
Posted by: Guest on January-28-2021

Code answers related to "android disable scroll recyclerview"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language