Searched refs:mBackgroundPaint (Results 1 – 6 of 6) sorted by relevance
/frameworks/support/wear/src/main/java/androidx/wear/widget/ |
D | RoundedDrawable.java | 82 final Paint mBackgroundPaint; field in RoundedDrawable 96 mBackgroundPaint = new Paint(); in RoundedDrawable() 97 mBackgroundPaint.setAntiAlias(true); in RoundedDrawable() 98 mBackgroundPaint.setColor(Color.TRANSPARENT); in RoundedDrawable() 149 mBackgroundPaint.setColor(color); in setBackgroundColor() 160 return mBackgroundPaint.getColor(); in getBackgroundColor() 209 mBackgroundPaint); in draw() 238 mBackgroundPaint.setAlpha(alpha); in setAlpha()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/ |
D | AssistOrbView.java | 43 private final Paint mBackgroundPaint = new Paint(); field in AssistOrbView 118 mBackgroundPaint.setAntiAlias(true); in AssistOrbView() 119 mBackgroundPaint.setColor(getResources().getColor(R.color.assist_orb_color)); in AssistOrbView() 134 mBackgroundPaint); in drawBackground() local 270 mBackgroundPaint.setAlpha(255);
|
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/ |
D | SeekBar.java | 63 private final Paint mBackgroundPaint = new Paint(Paint.ANTI_ALIAS_FLAG); field in SeekBar 80 mBackgroundPaint.setColor(Color.GRAY); in SeekBar() 133 canvas.drawRoundRect(mBackgroundRect, radius, radius, mBackgroundPaint); in onDraw()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
D | TaskViewHeader.java | 83 private Paint mBackgroundPaint = new Paint(); field in TaskViewHeader.HighlightColorDrawable 88 mBackgroundPaint.setColor(Color.argb(255, 0, 0, 0)); in HighlightColorDrawable() 89 mBackgroundPaint.setAntiAlias(true); in HighlightColorDrawable() 101 mBackgroundPaint.setColor(color); in setColorAndDim() 133 mCornerRadius, mCornerRadius, mBackgroundPaint); in draw()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | TaskSnapshotSurface.java | 125 private final Paint mBackgroundPaint = new Paint(); field in TaskSnapshotSurface 241 mBackgroundPaint.setColor(backgroundColor != 0 ? backgroundColor : WHITE); in TaskSnapshotSurface() 398 mBackgroundPaint); in drawBackgroundAndBars() 401 c.drawRect(0, frame.bottom, c.getWidth(), c.getHeight(), mBackgroundPaint); in drawBackgroundAndBars()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
D | NotificationStackScrollLayout.java | 142 private final Paint mBackgroundPaint = new Paint(); field in NotificationStackScrollLayout 468 mBackgroundPaint.setAntiAlias(true); in NotificationStackScrollLayout() 545 canvas.drawRect(darkLeft, darkTop, darkRight, darkBottom, mBackgroundPaint); in drawBackground() 561 mCornerRadius, mCornerRadius, mBackgroundPaint); in drawBackground() 587 mBackgroundPaint.setColor(color); in updateBackgroundDimming() 633 mBackgroundPaint.setXfermode(mDrawBackgroundAsSrc && !mFadingOut && !mParentNotFullyVisible in updateSrcDrawing()
|