Home
last modified time | relevance | path

Searched refs:mPaintLabel (Results 1 – 2 of 2) sorted by relevance

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