Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/
DDockState.java126 private Paint mHintTextPaint; field in DockState.ViewState
141 mHintTextPaint = new Paint(Paint.ANTI_ALIAS_FLAG); in ViewState()
142 mHintTextPaint.setColor(Color.WHITE); in ViewState()
151 mHintTextPaint.setTextSize(res.getDimensionPixelSize( in update()
153 mHintTextPaint.getTextBounds(mHintText, 0, mHintText.length(), mTmpRect); in update()
154 mHintTextBounds.set((int) mHintTextPaint.measureText(mHintText), mTmpRect.height()); in update()
171 mHintTextPaint.setAlpha(mHintTextAlpha); in draw()
176 canvas.drawText(mHintText, x, y, mHintTextPaint); in draw()