今天有人问到这方面问题,趁着礼拜天 分享给大家 ,直接上代码
首先先将下面的复制的你的代码中
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 九宫格布局上下均分所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)