Searched defs:mBackgroundPaint (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Camera/src/com/android/camera/
H A DPanoProgressBar.java39 private final Paint mBackgroundPaint = new Paint(); field in class:PanoProgressBar
56 mBackgroundPaint.setStyle(Paint.Style.FILL);
57 mBackgroundPaint.setAlpha(0xff);
85 mBackgroundPaint.setColor(color);
167 canvas.drawRect(mDrawBounds, mBackgroundPaint);
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DPanoProgressBar.java38 private final Paint mBackgroundPaint = new Paint(); field in class:PanoProgressBar
55 mBackgroundPaint.setStyle(Paint.Style.FILL);
56 mBackgroundPaint.setAlpha(0xff);
83 mBackgroundPaint.setColor(color);
164 canvas.drawRect(mDrawBounds, mBackgroundPaint);
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DZoomControlWheel.java63 private Paint mBackgroundPaint; field in class:ZoomControlWheel
72 mBackgroundPaint = new Paint();
73 mBackgroundPaint.setStyle(Paint.Style.STROKE);
74 mBackgroundPaint.setAntiAlias(true);
164 mBackgroundPaint.setStrokeWidth(width);
165 mBackgroundPaint.setStrokeCap(Paint.Cap.ROUND);
166 mBackgroundPaint.setColor(color);
167 canvas.drawArc(mBackgroundRect, startAngle, sweepAngle, false, mBackgroundPaint);
H A DIndicatorControlWheel.java81 private Paint mBackgroundPaint; field in class:IndicatorControlWheel
128 mBackgroundPaint = new Paint();
129 mBackgroundPaint.setStyle(Paint.Style.STROKE);
130 mBackgroundPaint.setAntiAlias(true);
466 mBackgroundPaint.setStrokeWidth(HIGHLIGHT_WIDTH);
467 mBackgroundPaint.setStrokeCap(Paint.Cap.SQUARE);
468 mBackgroundPaint.setStyle(Paint.Style.FILL_AND_STROKE);
469 mBackgroundPaint.setColor(HIGHLIGHT_FAN_COLOR);
470 canvas.drawPath(fanPath, mBackgroundPaint);
473 mBackgroundPaint
[all...]
/packages/apps/Gallery/src/com/android/camera/
H A DGridViewSpecial.java936 mBackgroundPaint);
951 // mBackgroundPaint is used to draw the (black) background outside
953 Paint mBackgroundPaint; field in class:ImageBlockManager
957 mBackgroundPaint = new Paint();
958 mBackgroundPaint.setStyle(Paint.Style.FILL);
959 mBackgroundPaint.setColor(0xFF000000); // black
1119 yPos + mBlockHeight, mBackgroundPaint);

Completed in 129 milliseconds