美文网首页安卓自定义VIEWAndroid 入门进阶swift
自定义下拉刷新上拉加载控件(SwipeRefreshLayout

自定义下拉刷新上拉加载控件(SwipeRefreshLayout

作者: _deadline | 来源:发表于2016-11-06 16:32 被阅读6322次

github: https://github.com/niniloveyou/SwipeRecyclerView

感觉还可以的star下谢谢!

效果图:(效果图循环播放后,总感觉有些诡异!, 可能是gif截的点不对, 在手机上看效果正常的)

swipeRecyclerView.gif

我就不讲代码是如何实现的了。说下实现了什么内容:

  1. 支持自动下拉刷新
//设置自动下拉刷新,切记要在recyclerView.setOnLoadListener()之后调用
     // 因为在没有设置监听接口的情况下,setRefreshing(true),调用不到OnLoadListener
      mSwipeRecyclerView.setRefreshing(true);
  1. 支持emptyView
mSwipeRecyclerView.setEmptyView(View emptyView);

3.支持禁止上拉加载更多/下拉刷新

 //禁止下拉刷新
    mSwipeRecyclerView.setRefreshEnable(false);

    //禁止加载更多
    mSwipeRecyclerView.setLoadMoreEnable(false);

4.支持自定义footer view

   //设置footerView
   //但是自定义的footerView必须继承BaseFooterView
   mSwipeRecyclerView.setFooterView(new SimpleFooterView(this));

5.支持GridLayoutManager的SpanSizeLookup

//由于SwipeRecyclerView中对GridLayoutManager的SpanSizeLookup做了处理,因此对于使用了
    //GridLayoutManager又要使用SpanSizeLookup的情况,可以这样使用!
    mSwipeRecyclerView.setSpanSizeLookup(new GridLayoutManager.SpanSizeLookup() {
        @Override
        public int getSpanSize(int position) {
            return 3;
        }
    });

6.关于footerView的分割线 获取childCount - 1 不包含footerView即可

//设置去除footerView 的分割线
    mSwipeRecyclerView.getRecyclerView().addItemDecoration(new RecyclerView.ItemDecoration() {
        @Override
        public void onDraw(Canvas c, RecyclerView parent, RecyclerView.State state) {
            super.onDraw(c, parent, state);
            Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
            paint.setColor(0xFFEECCCC);

            Rect rect = new Rect();
            int left = parent.getPaddingLeft();
            int right = parent.getWidth() - parent.getPaddingRight();
            final int childCount = parent.getChildCount() - 1;
            for (int i = 0; i < childCount; i++) {
                final View child = parent.getChildAt(i);

                //获得child的布局信息
                final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child.getLayoutParams();
                final int top = child.getBottom() + params.bottomMargin;
                final int itemDividerHeight = 1;//px
                rect.set(left + 50, top, right - 50, top + itemDividerHeight);
                c.drawRect(rect, paint);
            }
        }
    });

7.如果需要对SwipeRefreshLayout或RecyclerView做其他的设置

       mSwipeRecyclerView.getSwipeRefreshLayout()
       mSwipeRecyclerView.getRecyclerView()

8.可能存在的问题

由于Recycler.Adapter中关于数据集更新的方法全是final的,无法重写,并且自定义的DataObserver也没法实现的方法 如:notifyItemMoved方法 因此使用除SwipeRecyclerView中DataObserver的方法之外的更新数据集的方法,可能会有问题所以更新数据集建议采用DataObserver中有的方法。

github: https://github.com/niniloveyou/SwipeRecyclerView

感觉还可以的star下谢谢!
201609272123578195.gif

你不点个赞吗?

相关文章

网友评论

  • e9c6e5c42465:没充满屏幕自动加载满屏,或者stopLoadingMore无效的问题 优化了一下,可以使用。感谢作者:sunglasses:
    yaoTongxue:你是怎么优化的能告诉我一下吗:smile:
  • 2pai:你好。如果当前item小于屏幕他会出现自动把屏幕的数据加载满,怎么处理呢
  • 我是邓邓邓:如果当前item小于屏幕他会出现自动把屏幕的数据加载满;
  • 我是邓邓邓:为什么自动加载 ?楼主在吗
  • 0a89d280bf74:怎么添加头布局?
    _deadline: @一世之秋 没封装添加头部的部分,如果需要的话需要对适配器做些文章,可以参考下添加footer的逻辑
  • d5ba366035a2:可以最低兼容到哪个版本
  • 0a89d280bf74:数据条数不超过屏幕高度的时候,下拉加载的那个进度怎么隐藏?
    0a89d280bf74:@_deadline 当加载更多没有数据的时候 调用stopLoadingMore 不能把 那个加载进度隐藏
    0a89d280bf74:@_deadline 就是那个上拉加载更多的那个,我用了 但是没用
    _deadline: @一世之秋 是底下的那个吗?如果你说的是底下的那个,直接stopLoadingMore
  • sayyanfu:上下不停来回拉的话,会不会崩溃呢?
    _deadline: @cold初养成 好,今天晚上看看解决下!
    d5ba366035a2:@_deadline 先下拉刷新,然后快速上划,加载更多会卡在那里 :innocent:
    _deadline: @sayyanfu 至少我测试的是没遇到的
  • navy_legend:感谢分享

本文标题:自定义下拉刷新上拉加载控件(SwipeRefreshLayout

本文链接:https://www.haomeiwen.com/subject/lndwuttx.html