Home
last modified time | relevance | path

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

/packages/apps/LegacyCamera/src/com/android/camera/ui/
DIndicatorControlWheel.java81 private Paint mBackgroundPaint; field in IndicatorControlWheel
128 mBackgroundPaint = new Paint(); in IndicatorControlWheel()
129 mBackgroundPaint.setStyle(Paint.Style.STROKE); in IndicatorControlWheel()
130 mBackgroundPaint.setAntiAlias(true); in IndicatorControlWheel()
473 mBackgroundPaint.setStrokeWidth(HIGHLIGHT_WIDTH); in onDraw()
474 mBackgroundPaint.setStrokeCap(Paint.Cap.SQUARE); in onDraw()
475 mBackgroundPaint.setStyle(Paint.Style.FILL_AND_STROKE); in onDraw()
476 mBackgroundPaint.setColor(HIGHLIGHT_FAN_COLOR); in onDraw()
477 canvas.drawPath(fanPath, mBackgroundPaint); in onDraw()
480 mBackgroundPaint.setStyle(Paint.Style.STROKE); in onDraw()
[all …]
DZoomControlWheel.java63 private Paint mBackgroundPaint; field in ZoomControlWheel
72 mBackgroundPaint = new Paint(); in ZoomControlWheel()
73 mBackgroundPaint.setStyle(Paint.Style.STROKE); in ZoomControlWheel()
74 mBackgroundPaint.setAntiAlias(true); in ZoomControlWheel()
164 mBackgroundPaint.setStrokeWidth(width); in drawArc()
165 mBackgroundPaint.setStrokeCap(Paint.Cap.ROUND); in drawArc()
166 mBackgroundPaint.setColor(color); in drawArc()
167 canvas.drawArc(mBackgroundRect, startAngle, sweepAngle, false, mBackgroundPaint); in drawArc()
/packages/apps/EmergencyInfo/EmergencyGestureAction/src/com/android/emergency/widgets/countdown/
DLoopingAnimationThread.java44 private final Paint mBackgroundPaint; field in LoopingAnimationThread
80 mBackgroundPaint = new Paint(); in LoopingAnimationThread()
81 mBackgroundPaint.setColor(Color.BLACK); in LoopingAnimationThread()
82 mBackgroundPaint.setStyle(Paint.Style.FILL); in LoopingAnimationThread()
83 mBackgroundPaint.setAntiAlias(true); in LoopingAnimationThread()
160 mBackgroundPaint); in draw() local
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
DPanoProgressBar.java38 private final Paint mBackgroundPaint = new Paint(); field in PanoProgressBar
55 mBackgroundPaint.setStyle(Paint.Style.FILL); in PanoProgressBar()
56 mBackgroundPaint.setAlpha(0xff); in PanoProgressBar()
83 mBackgroundPaint.setColor(color); in setBackgroundColor()
164 canvas.drawRect(mDrawBounds, mBackgroundPaint); in onDraw()
/packages/apps/Camera2/src/com/android/camera/
DPanoProgressBar.java41 private final Paint mBackgroundPaint = new Paint(); field in PanoProgressBar
58 mBackgroundPaint.setStyle(Paint.Style.FILL); in PanoProgressBar()
59 mBackgroundPaint.setAlpha(0xff); in PanoProgressBar()
87 mBackgroundPaint.setColor(color); in setBackgroundColor()
169 canvas.drawRect(mDrawBounds, mBackgroundPaint); in onDraw()
/packages/apps/Settings/src/com/android/settings/wifi/qrcode/
DQrDecorateView.java46 final private Paint mBackgroundPaint; field in QrDecorateView
93 mBackgroundPaint = new Paint(); in QrDecorateView()
94 mBackgroundPaint.setColor(mBackgroundColor); in QrDecorateView()
120 canvas.drawBitmap(mMaskBitmap, 0, 0, mBackgroundPaint); in onDraw()
/packages/apps/Camera2/src/com/android/camera/ui/
DTouchCircleDrawable.java52 private Paint mBackgroundPaint = new Paint(); field in TouchCircleDrawable
82 mBackgroundPaint.setAntiAlias(true); in TouchCircleDrawable()
83 mBackgroundPaint.setColor(resources.getColor(R.color.mode_icon_hover_highlight)); in TouchCircleDrawable()
135 canvas.drawCircle(mCenter.x, mCenter.y, mBackgroundRadius, mBackgroundPaint); in draw()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DTaskThumbnailView.java87 private final Paint mBackgroundPaint = new Paint(Paint.ANTI_ALIAS_FLAG); field in TaskThumbnailView
118 mBackgroundPaint.setColor(Color.WHITE); in TaskThumbnailView()
137 mBackgroundPaint.setColor(color); in bind()
332 canvas.drawRoundRect(x, y, width, height, cornerRadius, cornerRadius, mBackgroundPaint); in drawOnCanvas()
368 mBackgroundPaint.setColorFilter(filter); in updateThumbnailPaintFilter()
/packages/apps/Gallery/src/com/android/camera/
DGridViewSpecial.java936 mBackgroundPaint); in drawEmptyBlock()
953 Paint mBackgroundPaint; field in ImageBlockManager
957 mBackgroundPaint = new Paint(); in initGraphics()
958 mBackgroundPaint.setStyle(Paint.Style.FILL); in initGraphics()
959 mBackgroundPaint.setColor(0xFF000000); // black in initGraphics()
1119 yPos + mBlockHeight, mBackgroundPaint); in doDraw()