HomeSort by relevance Sort by last modified time
    Searched refs:mPaintLabel (Results 1 - 2 of 2) sorted by null

  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
BalloonHint.java 354 private Paint mPaintLabel;
365 mPaintLabel = new Paint();
366 mPaintLabel.setColor(mLabeColor);
367 mPaintLabel.setAntiAlias(true);
368 mPaintLabel.setFakeBoldText(true);
369 mFmi = mPaintLabel.getFontMetricsInt();
381 mPaintLabel.setTextSize(fontSize);
382 mPaintLabel.setFakeBoldText(textBold);
383 mPaintLabel.setColor(textColor);
384 mFmi = mPaintLabel.getFontMetricsInt()
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
CountingTimerView.java 54 private final Paint mPaintLabel = new Paint();
126 mLabelWidth = mLabel == null ? 0 : mPaintLabel.measureText(mLabel);
166 canvas.drawText(mLabel, x, yLabel, mPaintLabel);
180 canvas.drawText(mLabel, x, yLabel, mPaintLabel);
226 canvas.drawText(mLabel, x, yLabel, mPaintLabel);
270 mPaintLabel.setAntiAlias(true);
271 mPaintLabel.setStyle(Paint.Style.STROKE);
272 mPaintLabel.setTextAlign(Paint.Align.LEFT);
273 mPaintLabel.setTypeface(mRobotoLabel);
274 mPaintLabel.setTextSize(r.getDimension(R.dimen.label_font_size))
    [all...]

Completed in 316 milliseconds