HomeSort by relevance Sort by last modified time
    Searched defs:mMonthNumPaint (Results 1 - 3 of 3) sorted by null

  /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...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
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);

Completed in 232 milliseconds