package com.wpc.library.recyclerviewhelper;
|
|
/**
|
* Created by weikou2015 on 2017/6/28.
|
*/
|
|
import android.graphics.Canvas;
|
import android.graphics.Paint;
|
import android.graphics.Rect;
|
import androidx.recyclerview.widget.LinearLayoutManager;
|
import androidx.recyclerview.widget.RecyclerView;
|
|
import android.view.View;
|
|
|
/**
|
* This class is from the v7 samples of the Android SDK. It's not by me!
|
* <p/>
|
* See the license above for details.
|
*/
|
public class DividerItemDecoration extends RecyclerView.ItemDecoration {
|
/**
|
* 水平方向
|
*/
|
public static final int HORIZONTAL = LinearLayoutManager.HORIZONTAL;
|
|
/**
|
* 垂直方向
|
*/
|
public static final int VERTICAL = LinearLayoutManager.VERTICAL;
|
|
// 画笔
|
private Paint paint;
|
// 布局方向
|
private int orientation = 2;
|
// 分割线颜色
|
private int color;
|
//列数 暂定最多2列
|
private int numColumn = 1;
|
// 分割线尺寸
|
private int size = 2;
|
// 分割线尺寸
|
private boolean haveHeader;
|
//是否有分割线
|
private boolean haveDivider = true;
|
private boolean isSet = false;
|
|
public DividerItemDecoration() {
|
this(VERTICAL);
|
orientation = 2;
|
}
|
|
public DividerItemDecoration(int orientation) {
|
this.orientation = orientation;
|
|
paint = new Paint();
|
}
|
|
@Override
|
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
|
super.getItemOffsets(outRect, view, parent, state);
|
int position = parent.getChildAdapterPosition(view);
|
outRect.bottom = size * 2;
|
if (numColumn > 1) {
|
if (haveHeader) {
|
if (position == 0) {
|
return;
|
} else {
|
position -= 1;
|
}
|
}
|
if (position % numColumn == 0) {
|
outRect.right = size;
|
} else if (position % numColumn == (numColumn - 1)) {
|
outRect.left = size;
|
} else {
|
outRect.left = size;
|
outRect.right = size;
|
}
|
}
|
}
|
|
@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 numColumn 列数
|
*/
|
public void setNumColumn(int numColumn) {
|
this.numColumn = numColumn;
|
}
|
|
|
/**
|
* 是否加入header
|
*
|
* @param haveHeader header
|
*/
|
public void isHaveHeader(boolean haveHeader) {
|
this.haveHeader = haveHeader;
|
}
|
|
/**
|
* 是否加入header
|
*
|
* @param haveDivider header
|
*/
|
public void isHaveDivider(boolean haveDivider) {
|
this.haveDivider = haveDivider;
|
}
|
|
/**
|
* 设置分割线尺寸
|
*
|
* @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();
|
|
int childCount = parent.getChildCount();
|
for (int i = 0; i < childCount; i++) {
|
if (haveHeader && i == 1 && !isSet) {
|
isSet = true;
|
continue;
|
}
|
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++) {
|
if (haveHeader && i == 0 && !isSet) {
|
isSet = true;
|
continue;
|
}
|
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);
|
}
|
}
|
}
|