android RecyclerView 九宫格布局上下均分

android RecyclerView 九宫格布局上下均分,第1张

概述今天有人问到这方面问题,趁着礼拜天分享给大家,直接上代码首先先将下面的复制的你的代码中publicclassItemOffsetDecorationextendsRecyclerView.ItemDecoration{privateintmItemOffset;publicItemOffsetDecoration(intitemOffset){mItemOff

今天有人问到这方面问题,趁着礼拜天 分享给大家 ,直接上代码

首先先将下面的复制的你的代码中

public class ItemOffsetdecoration extends RecyclerVIEw.Itemdecoration {    private int mItemOffset;    public ItemOffsetdecoration(int itemOffset) {        mItemOffset = itemOffset;    }    public ItemOffsetdecoration(Context context, int itemOffsetID) {        this(context.getResources().getDimensionPixelSize(itemOffsetID));    }    @OverrIDe    public voID getItemOffsets(Rect outRect, VIEw vIEw, RecyclerVIEw parent,                               RecyclerVIEw.State state) {        super.getItemOffsets(outRect, vIEw, parent, state);        outRect.set(mItemOffset, mItemOffset, mItemOffset, mItemOffset);    }}

 

他的使用如下

   recyclerVIEw.setLayoutManager(new GrIDLayoutManager(this, 4));        ItemOffsetdecoration itemOffsetdecoration = new ItemOffsetdecoration(this, R.dimen.dp_5);        recyclerVIEw.addItemdecoration(itemOffsetdecoration);        adapter = new GrIDAdapter(List);

 

效果图demo地址。。。。

总结

以上是内存溢出为你收集整理的android RecyclerView 九宫格布局上下均分全部内容,希望文章能够帮你解决android RecyclerView 九宫格布局上下均分所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1118984.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存