Home
last modified time | relevance | path

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

/device/google/accessory/demokit/app/src/com/google/android/DemoKit/
DJoystickView.java21 private Paint mLabelPaint; field in JoystickView
58 mLabelPaint = new Paint(); in initJoystickView()
59 mLabelPaint.setColor(Color.WHITE); in initJoystickView()
60 mLabelPaint.setTextSize(24); in initJoystickView()
61 mLabelPaint.setAntiAlias(true); in initJoystickView()
62 mLabelPaint.setShadowLayer(1, 2, 2, Color.BLACK); in initJoystickView()
76 canvas.drawText(mLabelText, x + 12, y + 8, mLabelPaint); in onDraw()