Searched refs:mBackgroundPaint (Results 1 - 6 of 6) sorted by relevance

/frameworks/support/wear/src/main/java/androidx/wear/widget/
H A DRoundedDrawable.java82 final Paint mBackgroundPaint; field in class:RoundedDrawable
96 mBackgroundPaint = new Paint();
97 mBackgroundPaint.setAntiAlias(true);
98 mBackgroundPaint.setColor(Color.TRANSPARENT);
149 mBackgroundPaint.setColor(color);
160 return mBackgroundPaint.getColor();
209 mBackgroundPaint);
238 mBackgroundPaint.setAlpha(alpha);
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
H A DAssistOrbView.java43 private final Paint mBackgroundPaint = new Paint(); field in class:AssistOrbView
118 mBackgroundPaint.setAntiAlias(true);
119 mBackgroundPaint.setColor(getResources().getColor(R.color.assist_orb_color));
134 mBackgroundPaint);
270 mBackgroundPaint.setAlpha(255);
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DSeekBar.java63 private final Paint mBackgroundPaint = new Paint(Paint.ANTI_ALIAS_FLAG); field in class:SeekBar
80 mBackgroundPaint.setColor(Color.GRAY);
133 canvas.drawRoundRect(mBackgroundRect, radius, radius, mBackgroundPaint);
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskSnapshotSurface.java125 private final Paint mBackgroundPaint = new Paint(); field in class:TaskSnapshotSurface
241 mBackgroundPaint.setColor(backgroundColor != 0 ? backgroundColor : WHITE);
398 mBackgroundPaint);
401 c.drawRect(0, frame.bottom, c.getWidth(), c.getHeight(), mBackgroundPaint);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewHeader.java83 private Paint mBackgroundPaint = new Paint(); field in class:TaskViewHeader.HighlightColorDrawable
88 mBackgroundPaint.setColor(Color.argb(255, 0, 0, 0));
89 mBackgroundPaint.setAntiAlias(true);
101 mBackgroundPaint.setColor(color);
133 mCornerRadius, mCornerRadius, mBackgroundPaint);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java142 private final Paint mBackgroundPaint = new Paint(); field in class:NotificationStackScrollLayout
468 mBackgroundPaint.setAntiAlias(true);
545 canvas.drawRect(darkLeft, darkTop, darkRight, darkBottom, mBackgroundPaint);
561 mCornerRadius, mCornerRadius, mBackgroundPaint);
587 mBackgroundPaint.setColor(color);
633 mBackgroundPaint.setXfermode(mDrawBackgroundAsSrc && !mFadingOut && !mParentNotFullyVisible

Completed in 182 milliseconds