1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
| import android.annotation.TargetApi; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Canvas; import android.graphics.Paint; import android.os.Build; import android.support.annotation.Nullable; import android.util.AttributeSet; import android.util.Log; import android.view.View; import com.zhy.autolayout.utils.AutoUtils; import java.util.List;
public class RatioColorBar extends View { private boolean showBorder; private boolean showPadding; private int borderWidth; private int borderColor; private int padding; private List<RatioBarData> colorBars; private Paint borderPaint; private Paint barPaint; public RatioColorBar(Context context) { super(context); init(context, null); } public RatioColorBar(Context context, @Nullable AttributeSet attrs) { super(context, attrs); init(context, attrs); } public RatioColorBar(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); init(context, attrs); } @TargetApi(Build.VERSION_CODES.LOLLIPOP) public RatioColorBar(Context context, @Nullable AttributeSet attrs, int defStyleAttr, int defStyleRes) { super(context, attrs, defStyleAttr, defStyleRes); init(context, attrs); } private void init(Context context, AttributeSet attrs) { if (attrs != null) { TypedArray t = context.obtainStyledAttributes(attrs, R.styleable.RatioColorBar); showBorder = t.getBoolean(R.styleable.RatioColorBar_rcb_show_border, false); showPadding = t.getBoolean(R.styleable.RatioColorBar_rcb_show_padding, false); borderColor = t.getColor(R.styleable.RatioColorBar_rcb_border_color, 0xffeeeeee); borderWidth = t.getDimensionPixelSize(R.styleable.RatioColorBar_rcb_border_width, 1); padding = t.getDimensionPixelSize(R.styleable.RatioColorBar_rcb_border_padding, 1); t.recycle(); } else { showBorder = false; showPadding = false; borderColor = 0xffeeeeee; borderWidth = 1; padding = 1; } borderWidth = AutoUtils.getPercentWidthSize(borderWidth); padding = AutoUtils.getPercentWidthSize(padding); initPaints(); } private void initPaints() { borderPaint = new Paint(); borderPaint.setAntiAlias(true); borderPaint.setColor(borderColor); borderPaint.setStyle(Paint.Style.STROKE); borderPaint.setStrokeWidth(borderWidth); barPaint = new Paint(); barPaint.setAntiAlias(true); barPaint.setStyle(Paint.Style.FILL); } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); if (colorBars != null) { int startX = 0; int endX = getWidth(); int startY = 0; int endY = getHeight(); if (showBorder) { startX += borderWidth; endX -= borderWidth; startY += borderWidth; endY -= borderWidth; canvas.drawRect(startX, startY, endX, endY, borderPaint); } if (showPadding) { startX += padding; endX -= padding; startY += padding; endY -= padding; } Log.e("RRR", "sx=" + startX + ",ex=" + endX + ",sy=" + startY + ",ey=" + endY); int dx = endX - startX; Log.e("RRR", "dx=" + dx); long sum = 0; for (RatioBarData colorBar : colorBars) { sum += colorBar.getValue(); } Log.e("RRR", "sum=" + sum); if (sum != 0) { int realStartX = startX; for (RatioBarData colorBar : colorBars) { int color = colorBar.getColor(); int ratioWidth = (int) ((dx * (colorBar.getValue() * 1.0 / sum)) + 0.5f); Log.e("RRR", "ratioWidth=" + ratioWidth); barPaint.setColor(color); Log.e("RRR", "realStartX=" + realStartX); canvas.drawRect(realStartX, startY, realStartX + ratioWidth, endY, barPaint); realStartX += ratioWidth; } } } } public void setColorBars(List<RatioBarData> colorBars) { this.colorBars = colorBars; invalidate(); } public static class RatioBarData { private long value; private int color; public RatioBarData() { } public RatioBarData(long value, int color) { this.value = value; this.color = color; } public long getValue() { return value; } public void setValue(long value) { this.value = value; } public int getColor() { return color; } public void setColor(int color) { this.color = color; } } }
|