Android-PullToRefreshRecyclerView icon indicating copy to clipboard operation
Android-PullToRefreshRecyclerView copied to clipboard

A RecyclerView library for Android which support pull-to-refresh ,auto-load-more and add header.

Results 25 Android-PullToRefreshRecyclerView issues
Sort by recently updated
recently updated
newest added

GridView加上headview后第一行只有一个item

看了下好像setItemAnimator,addItemDecoration这个方法都没有提供,内部有用到,如果是这样,好像会和stickyheadersrecyclerview冲突?

如果头部控件为listview或者GridView,或者ScroolView等,只要头部内容展示的高度超过屏幕高度,则会出现RecyclerView内部部分无法展示,下拉刷新圈圈也只会在第一次生效

@Override public void onFinishLoading(boolean hasMoreItems, boolean needSetSelection) { ``` if (getLayoutManager() == null) { return; } if (!hasMoreItems && mLoadMoreFooter != null) { //if it's last line, minus the extra...

我找到这个方法没有作用的原因了: ![qq 20160616145824](https://cloud.githubusercontent.com/assets/8305971/16108012/00691d12-33d3-11e6-9281-fc22553ac770.png) 这是因为该addOnScrollListener()方法执行的RecycleView的方法,并不是自定义的addOnScrollListener(); ![addonscroll](https://cloud.githubusercontent.com/assets/8305971/16108100/8f10743e-33d3-11e6-8900-3b3d4fc90e5c.png) 所以导致自定义的addOnScrollListener()里面给mOnScrollLinstener()赋值失败! ![addonscroll](https://cloud.githubusercontent.com/assets/8305971/16108145/fbf080ee-33d3-11e6-937c-8664a8b839e8.png) 最后自定义的InterOnScrollListener里面的判断进不去,所以方法失效! ![default](https://cloud.githubusercontent.com/assets/8305971/16109015/307726ce-33d9-11e6-8794-9b059726661a.png)