shortboy

之前用com.bartoszlipinski.recyclerviewheader.RecyclerViewHeader 不过局限性有点大。

(com.bartoszlipinski.recyclerviewheader:library:1.2.0)

而且还要自己重写该方法。不然很容易就报空指针

@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
  if (mOverrideRecycler!=null) {
  return super.onInterceptTouchEvent(ev);
  }
  return false;
}

现在用一个比较方便的。和ListView差不多用法的

bookends-1.0.0,这个类似没有什么资源说法。

我当时在github上面找的。

具体jar在这里:https://jcenter.bintray.com/com/tumblr/bookends/1.0.0/,如果不会用.arr

请自己移步到http://www.cnblogs.com/shortboy/p/4424944.html

分类:

技术点:

相关文章:

  • 2021-11-30
  • 2022-01-18
  • 2021-06-03
  • 2021-11-23
  • 2021-07-22
  • 2021-10-02
  • 2021-11-30
  • 2021-11-03
猜你喜欢
  • 2021-12-06
  • 2021-11-30
  • 2021-11-30
  • 2021-11-30
  • 2022-12-23
  • 2021-09-23
  • 2022-12-23
相关资源
相似解决方案