RecyclerView 设置item间距

本文介绍了如何在Android中为RecyclerView设置item之间的间距,包括LinearLayoutManager和GridLayoutManager两种布局方式。通过创建自定义的ItemDecoration并重写getItemOffsets方法,实现间距的动态设置。
摘要由CSDN通过智能技术生成

设置LinearLayoutManager间距
1、继承RecyclerView.ItemDecoration,实现getItemOffsets方法

public class LinearSpacingItemDecoration extends RecyclerView.ItemDecoration {
 
    private int spacing;//间距padding
 
    public LinearSpacingItemDecoration(Context context, int spacings) {
        //获取需要设置的间距值dp,这里不写死,调用时传过来
//        spacing = context.getResources().getDimensionPixelSize(R.dimen.d10);
        spacing = spacings;
    }
 
    @Override
    public void getItemOffsets(@NonNull Rect outRect, @NonNull View view, @NonNull RecyclerView parent, @NonNull RecyclerView.State state) {
        super.getItemOffsets(outRect, view, parent, state);
//        outRect.top = spacing;//item上边的间距
//        outRect.left = spacing;//左边间距
//        outRect.right = spacing;//右边间距
        outRect.bottom = spacing;//设置bott

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值