Lines Matching refs:mSecondPaint
95 private Paint mSecondPaint; field in AnalogWatchFaceService.Engine
171 mSecondPaint = new Paint(); in onCreate()
172 mSecondPaint.setColor(mWatchHandHighlightColor); in onCreate()
173 mSecondPaint.setStrokeWidth(SECOND_TICK_STROKE_WIDTH); in onCreate()
174 mSecondPaint.setAntiAlias(true); in onCreate()
175 mSecondPaint.setStrokeCap(Paint.Cap.ROUND); in onCreate()
176 mSecondPaint.setShadowLayer(SHADOW_RADIUS, 0, 0, mWatchHandShadowColor); in onCreate()
248 mSecondPaint.setColor(Color.WHITE); in updateWatchHandStyle()
253 mSecondPaint.setAntiAlias(false); in updateWatchHandStyle()
258 mSecondPaint.clearShadowLayer(); in updateWatchHandStyle()
264 mSecondPaint.setColor(mWatchHandHighlightColor); in updateWatchHandStyle()
269 mSecondPaint.setAntiAlias(true); in updateWatchHandStyle()
274 mSecondPaint.setShadowLayer(SHADOW_RADIUS, 0, 0, mWatchHandShadowColor); in updateWatchHandStyle()
289 mSecondPaint.setAlpha(inMuteMode ? 80 : 255); in onInterruptionFilterChanged()
428 mSecondPaint); in onDraw()