Searched defs:mMonthNumPaint (Results 1 - 1 of 1) sorted by relevance

/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DSimpleMonthView.java129 protected Paint mMonthNumPaint; field in class:SimpleMonthView
297 mMonthNumPaint = new Paint();
298 mMonthNumPaint.setAntiAlias(true);
299 mMonthNumPaint.setTextSize(MINI_DAY_NUMBER_TEXT_SIZE);
300 mMonthNumPaint.setStyle(Style.FILL);
301 mMonthNumPaint.setTextAlign(Align.CENTER);
302 mMonthNumPaint.setFakeBoldText(false);
455 mMonthNumPaint.setColor(mTodayNumberColor);
457 mMonthNumPaint.setColor(mDayTextColor);
459 canvas.drawText(String.format("%d", dayNumber), x, y, mMonthNumPaint);
[all...]

Completed in 390 milliseconds