其他分享
首页 > 其他分享> > RecycleView自定义LayoutManager实现Gallery效果,Android体系化进阶学习图谱

RecycleView自定义LayoutManager实现Gallery效果,Android体系化进阶学习图谱

作者:互联网

老规矩,先上图:

image

这个效果其实就是在上篇的HorizontalLayoutmanager的基础上进行修改

1、可以看到条目的起始位置是从屏幕的一半的地方再减去item宽度的一半的位置开始,而且每个item都是叠在上一个item宽度一般的位置

mStartX = getWidth()/2 - getItemShowWidth(); for (int i = 0; i < getItemCount(); i++) {      Rect rect = new Rect(mStartX + temp, 0, mStartX + temp + mItemWidth, itemHeight);      mSparseArray.put(i, rect);      mBooleanArray.put(i, false);      temp += getItemShowWidth(); } private int getItemShowWidth() {    return mItemWidth / 2;}

image

2、我们可以看到所有的item都重叠起来了,画廊的效果是中间的item完全显示,而其它地方都只显示了一半,这里我们要重写Recycleview中的方法,来改变item绘制的顺序,我们想要画廊的效果是中间显示其它显示一半,所以我们中间的item最后来绘制,这里介绍下Recycleview中的这个方法

@Override    protected int getChildDrawingOrder(int childCount, int i) {        if (mChildDrawingOrderCallback == null) {            return super.getChildDrawingOrder(childCount, i);        } else {            return mChildDrawingOrderCallback.onGetChildDrawingOrder(childCount, i);        }    }

childCount表示屏幕中可见的item个数,i表示要绘制的条目位置,i越小越先绘制,如下所示:

image

前三个条目的位置和索引一样不用变,中间的为childCount-1,倒数第二个的绘图顺序是center,倒数第二个的绘图顺序是center+1,倒数第三个的绘图顺序是center+2,所以后三个对应的为center + childCount- 1 - i

public class GalleryRecycleview extends RecyclerView {    public GalleryRecycleview(Context context) {        this(context,null);    }    public GalleryRecycleview(Context context, @Nullable AttributeSet attrs) {        super(context, attrs);        setChildrenDrawingOrderEnabled(true);    }    @Override    protected int getChildDrawingOrder(int childCount, int i) {        int center = getlayoutManager().getCenterPos()                - getlayoutManager().getFistvisiblePos(); //计算正在显示的所有Item的中间位置        int order;        if (i == center) {            order = childCount - 1;        } else if (i > center) {            order = center + childCount - 1 - i;        } else {            order = i;        }        return order;    }

在layoutmanager中获取第一个可见item和中间item的位置

public int getCenterPos() {        int pos = (mTotalMoveX / getItemShowWidth());        int more = (mTotalMoveX % getItemShowWidth());        if (more > getItemShowWidth() * 0.5f) pos++;        return pos;    }    public int getFistvisiblePos() {        if(getItemCount()==0){            return 0;        }        return getPosition(getChildAt(0));    }

image

学习分享

在当下这个信息共享的时代,很多资源都可以在网络上找到,只取决于你愿不愿意找或是找的方法对不对了

很多朋友不是没有资料,大多都是有几十上百个G,但是杂乱无章,不知道怎么看从哪看起,甚至是看后就忘

如果大家觉得自己在网上找的资料非常杂乱、不成体系的话,我也分享一套给大家,比较系统,我平常自己也会经常研读。

2020最新上万页的大厂面试真题

七大模块学习资料:如NDK模块开发、Android框架体系架构…

只有系统,有方向的学习,才能在段时间内迅速提高自己的技术。

这份体系学习笔记,适应人群:
第一,学习知识比较碎片化,没有合理的学习路线与进阶方向。
第二,开发几年,不知道如何进阶更进一步,比较迷茫。
第三,到了合适的年纪,后续不知道该如何发展,转型管理,还是加强技术研究。如果你有需要,我这里恰好有为什么,不来领取!说不定能改变你现在的状态呢!
后续不知道该如何发展,转型管理,还是加强技术研究。如果你有需要,我这里恰好有为什么,不来领取!说不定能改变你现在的状态呢!
由于文章内容比较多,篇幅不允许,部分未展示内容以截图方式展示 。如有需要获取完整的资料文档的朋友点击我的GitHub免费获取。

标签:return,center,自定义,int,RecycleView,public,item,体系化,childCount
来源: https://blog.csdn.net/m0_66685194/article/details/123243386