禁止RecycleView的滑動

參考連接 http://stackoverflow.com/questions/30531091/how-to-disable-recyclerview-scrollingide

How to disable RecyclerView scrolling?this

public class CustomGridLayoutManager extends LinearLayoutManager {
 private boolean isScrollEnabled = true;

 public CustomGridLayoutManager(Context context) {
  super(context);
 }

 public void setScrollEnabled(boolean flag) {
  this.isScrollEnabled = flag;
 }

 @Override
 public boolean canScrollVertically() {
  //Similarly you can customize "canScrollHorizontally()" for managing horizontal scroll
  return isScrollEnabled && super.canScrollVertically();
 }
}

使用的時候調用 setScrollEnabled方法code

相關文章
相關標籤/搜索