OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mMonthNumPaint
(Results
1 - 4
of
4
) sorted by null
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthView.java
40
mMonthNumPaint
.setColor(mDisabledDayTextColor);
42
mMonthNumPaint
.setColor(mTodayNumberColor);
44
mMonthNumPaint
.setColor(mDayTextColor);
46
canvas.drawText(String.format("%d", day), x, y,
mMonthNumPaint
);
MonthView.java
132
protected Paint
mMonthNumPaint
;
314
mMonthNumPaint
= new Paint();
315
mMonthNumPaint
.setAntiAlias(true);
316
mMonthNumPaint
.setTextSize(MINI_DAY_NUMBER_TEXT_SIZE);
317
mMonthNumPaint
.setStyle(Style.FILL);
318
mMonthNumPaint
.setTextAlign(Align.CENTER);
319
mMonthNumPaint
.setFakeBoldText(false);
/packages/apps/Calendar/src/com/android/calendar/month/
SimpleWeekView.java
115
protected Paint
mMonthNumPaint
;
324
mMonthNumPaint
= new Paint();
325
mMonthNumPaint
.setFakeBoldText(true);
326
mMonthNumPaint
.setAntiAlias(true);
327
mMonthNumPaint
.setTextSize(MINI_DAY_NUMBER_TEXT_SIZE);
328
mMonthNumPaint
.setColor(mFocusMonthColor);
329
mMonthNumPaint
.setStyle(Style.FILL);
330
mMonthNumPaint
.setTextAlign(Align.CENTER);
447
mMonthNumPaint
.setColor(isFocusMonth ? mFocusMonthColor : mOtherMonthColor);
448
mMonthNumPaint
.setFakeBoldText(false)
[
all
...]
MonthWeekEventsView.java
398
mMonthNumPaint
= new Paint();
399
mMonthNumPaint
.setFakeBoldText(false);
400
mMonthNumPaint
.setAntiAlias(true);
401
mMonthNumPaint
.setTextSize(TEXT_SIZE_MONTH_NUMBER);
402
mMonthNumPaint
.setColor(mMonthNumColor);
403
mMonthNumPaint
.setStyle(Style.FILL);
404
mMonthNumPaint
.setTextAlign(Align.RIGHT);
405
mMonthNumPaint
.setTypeface(Typeface.DEFAULT);
407
mMonthNumAscentHeight = (int) (-
mMonthNumPaint
.ascent() + 0.5f);
408
mMonthNumHeight = (int) (
mMonthNumPaint
.descent() - mMonthNumPaint.ascent() + 0.5f)
[
all
...]
Completed in 3680 milliseconds