HomeSort by relevance Sort by last modified time
    Searched refs:mBackgroundPaint (Results 1 - 12 of 12) sorted by null

  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorControlWheel.java 81 private Paint mBackgroundPaint;
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.setStyle(Paint.Style.STROKE)
    [all...]
ZoomControlWheel.java 63 private Paint mBackgroundPaint;
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);
  /packages/apps/Camera/src/com/android/camera/
PanoProgressBar.java 39 private final Paint mBackgroundPaint = new Paint();
56 mBackgroundPaint.setStyle(Paint.Style.FILL);
57 mBackgroundPaint.setAlpha(0xff);
85 mBackgroundPaint.setColor(color);
167 canvas.drawRect(mDrawBounds, mBackgroundPaint);
  /packages/apps/Camera2/src/com/android/camera/
PanoProgressBar.java 41 private final Paint mBackgroundPaint = new Paint();
58 mBackgroundPaint.setStyle(Paint.Style.FILL);
59 mBackgroundPaint.setAlpha(0xff);
87 mBackgroundPaint.setColor(color);
169 canvas.drawRect(mDrawBounds, mBackgroundPaint);
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
PanoProgressBar.java 38 private final Paint mBackgroundPaint = new Paint();
55 mBackgroundPaint.setStyle(Paint.Style.FILL);
56 mBackgroundPaint.setAlpha(0xff);
83 mBackgroundPaint.setColor(color);
164 canvas.drawRect(mDrawBounds, mBackgroundPaint);
  /packages/apps/Camera2/src/com/android/camera/ui/
TouchCircleDrawable.java 52 private Paint mBackgroundPaint = new Paint();
82 mBackgroundPaint.setAntiAlias(true);
83 mBackgroundPaint.setColor(resources.getColor(R.color.mode_icon_hover_highlight));
135 canvas.drawCircle(mCenter.x, mCenter.y, mBackgroundRadius, mBackgroundPaint);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SearchPanelCircleView.java 45 private final Paint mBackgroundPaint = new Paint();
134 mBackgroundPaint.setAntiAlias(true);
135 mBackgroundPaint.setColor(getResources().getColor(R.color.search_panel_circle_color));
156 mBackgroundPaint);
403 mFadeOutAnimator = ValueAnimator.ofFloat(mBackgroundPaint.getAlpha() / 255.0f, 0.0f);
416 mBackgroundPaint.setAlpha((int) (backgroundValue * 255));
430 mBackgroundPaint.setAlpha(255);
494 mBackgroundPaint.setAlpha(255);
  /developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/
ControllerView.java 57 private Paint mBackgroundPaint;
184 mBackgroundPaint = new Paint();
185 mBackgroundPaint.setStyle(Paint.Style.FILL);
186 mBackgroundPaint.setDither(true);
187 mBackgroundPaint.setAntiAlias(true);
347 canvas.drawRect(0, 0, getWidth(), getHeight(), mBackgroundPaint);
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceService.java 134 Paint mBackgroundPaint;
180 mBackgroundPaint = new Paint();
181 mBackgroundPaint.setColor(mInteractiveBackgroundColor);
311 adjustPaintColorToCurrentMode(mBackgroundPaint, mInteractiveBackgroundColor,
384 updatePaintIfInteractive(mBackgroundPaint, color);
424 canvas.drawRect(0, 0, bounds.width(), bounds.height(), mBackgroundPaint);
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceService.java 134 Paint mBackgroundPaint;
180 mBackgroundPaint = new Paint();
181 mBackgroundPaint.setColor(mInteractiveBackgroundColor);
311 adjustPaintColorToCurrentMode(mBackgroundPaint, mInteractiveBackgroundColor,
384 updatePaintIfInteractive(mBackgroundPaint, color);
424 canvas.drawRect(0, 0, bounds.width(), bounds.height(), mBackgroundPaint);
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
DigitalWatchFaceService.java 134 Paint mBackgroundPaint;
180 mBackgroundPaint = new Paint();
181 mBackgroundPaint.setColor(mInteractiveBackgroundColor);
311 adjustPaintColorToCurrentMode(mBackgroundPaint, mInteractiveBackgroundColor,
384 updatePaintIfInteractive(mBackgroundPaint, color);
424 canvas.drawRect(0, 0, bounds.width(), bounds.height(), mBackgroundPaint);
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 936 mBackgroundPaint);
    [all...]

Completed in 382 milliseconds