android 改变分割线,RecyclerView怎么修改分割线?

应为 RecyclerView 和 LayoutManager 是分离的,所以没有分割线属性,可以用 RecyclerView.ItemDecoration 进行分割线的绘制。

提供一个简单的装饰

/**

* 分隔线装饰

*

* @author youmingdot

*/

public class DividerLine extends RecyclerView.ItemDecoration {

/**

* 水平方向

*/

public static final int HORIZONTAL = LinearLayoutManager.HORIZONTAL;

/**

* 垂直方向

*/

public static final int VERTICAL = LinearLayoutManager.VERTICAL;

// 画笔

private Paint paint;

// 布局方向

private int orientation;

// 分割线颜色

private int color;

// 分割线尺寸

private int size;

public DividerLine() {

this(VERTICAL);

}

public DividerLine(int orientation) {

this.orientation = orientation;

paint = new Paint();

}

@Override

public void onDrawOver(Canvas c, RecyclerView parent, RecyclerView.State state) {

super.onDrawOver(c, parent, state);

if (orientation == VERTICAL) {

drawHorizontal(c, parent);

} else {

drawVertical(c, parent);

}

}

/**

* 设置分割线颜色

*

* @param color 颜色

*/

public void setColor(int color) {

this.color = color;

paint.setColor(color);

}

/**

* 设置分割线尺寸

*

* @param size 尺寸

*/

public void setSize(int size) {

this.size = size;

}

// 绘制垂直分割线

protected void drawVertical(Canvas c, RecyclerView parent) {

final int top = parent.getPaddingTop();

final int bottom = parent.getHeight() - parent.getPaddingBottom();

final int childCount = parent.getChildCount();

for (int i = 0; i < childCount; i++) {

final View child = parent.getChildAt(i);

final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child.getLayoutParams();

final int left = child.getRight() + params.rightMargin;

final int right = left + size;

c.drawRect(left, top, right, bottom, paint);

}

}

// 绘制水平分割线

protected void drawHorizontal(Canvas c, RecyclerView parent) {

final int left = parent.getPaddingLeft();

final int right = parent.getWidth() - parent.getPaddingRight();

final int childCount = parent.getChildCount();

for (int i = 0; i < childCount; i++) {

final View child = parent.getChildAt(i);

final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child.getLayoutParams();

final int top = child.getBottom() + params.bottomMargin;

final int bottom = top + size;

c.drawRect(left, top, right, bottom, paint);

}

}

}

使用方法

DividerLine dividerLine = new DividerLine(DividerLine.VERTICAL);

dividerLine.setSize(1);

dividerLine.setColor(0xFFDDDDDD);

recyclerView.addItemDecoration(dividerLine);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值