Home | History | Annotate | Download | only in ui

Lines Matching refs:mBackgroundPaint

81     private Paint mBackgroundPaint;
128 mBackgroundPaint = new Paint();
129 mBackgroundPaint.setStyle(Paint.Style.STROKE);
130 mBackgroundPaint.setAntiAlias(true);
466 mBackgroundPaint.setStrokeWidth(HIGHLIGHT_WIDTH);
467 mBackgroundPaint.setStrokeCap(Paint.Cap.SQUARE);
468 mBackgroundPaint.setStyle(Paint.Style.FILL_AND_STROKE);
469 mBackgroundPaint.setColor(HIGHLIGHT_FAN_COLOR);
470 canvas.drawPath(fanPath, mBackgroundPaint);
473 mBackgroundPaint.setStyle(Paint.Style.STROKE);
474 mBackgroundPaint.setColor(HIGHLIGHT_COLOR);
476 HIGHLIGHT_DEGREES, false, mBackgroundPaint);
487 mBackgroundPaint.setStrokeWidth(TIME_LAPSE_ARC_WIDTH);
488 mBackgroundPaint.setStrokeCap(Paint.Cap.ROUND);
489 mBackgroundPaint.setColor(TIME_LAPSE_ARC_COLOR);
504 canvas.drawArc(mBackgroundRect, 0, sweepAngle, false, mBackgroundPaint);