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
| @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); this.drawToCanvas(canvas); }
private void drawToCanvas(Canvas canvas) {
for (int i = 0; i < mCells.length; i++) { for (int j = 0; j < mCells[i].length; j++) { switch (mCells[i][j].getStatus()) { case Cell.STATE_CHECK: { selectPaint.setStyle(Style.FILL); selectPaint.setColor(getResources().getColor(R.color.color_red_fde7ec)); canvas.drawCircle(mCells[i][j].getX(), mCells[i][j].getY(), this.cellRadius, this.selectPaint); canvas.drawCircle(mCells[i][j].getX(), mCells[i][j].getY(), this.cellRadius, this.defaultPaint); selectPaint.setColor(getResources().getColor(R.color.pink)); canvas.drawCircle(mCells[i][j].getX(), mCells[i][j].getY(), this.cellInnerRadius / 3, this.selectPaint); } break; case Cell.STATE_NORMAL: { canvas.drawCircle(mCells[i][j].getX(), mCells[i][j].getY(), this.cellRadius, this.defaultPaint); canvas.drawCircle(mCells[i][j].getX(), mCells[i][j].getY(), this.cellInnerRadius / 3, this.selectPaint); } break; case Cell.STATE_CHECK_ERROR: { errorPaint.setStyle(Style.STROKE); canvas.drawCircle(mCells[i][j].getX(), mCells[i][j].getY(), this.cellRadius, this.errorPaint); errorPaint.setStyle(Style.FILL); canvas.drawCircle(mCells[i][j].getX(), mCells[i][j].getY(), this.cellInnerRadius / 3, this.errorPaint); } break; default: break; } } }
if (sCells.size() > 0) { Cell tempCell = sCells.get(0);
for (int i = 1; i < sCells.size(); i++) { Cell cell = sCells.get(i); if (cell.getStatus() == Cell.STATE_CHECK) { drawLineIncludeCircle(tempCell, cell, canvas, selectPaint); drawTriangle(tempCell, cell, canvas, selectPaint); } else if (cell.getStatus() == Cell.STATE_CHECK_ERROR) { drawLineIncludeCircle(tempCell, cell, canvas, errorPaint); drawTriangle(tempCell, cell, canvas, selectPaint); } tempCell = cell; }
if (isActionMove && !isActionUp) { this.drawLineFollowFinger(tempCell, canvas, selectPaint); } } }
|