Searched defs:tintColor (Results 1 - 10 of 10) sorted by relevance

/frameworks/support/compat/src/androidTest/java/androidx/core/graphics/
H A DTestTintAwareDrawable.java32 public void setTint(int tintColor) { argument
/frameworks/support/compat/src/main/java/androidx/core/graphics/drawable/
H A DWrappedDrawableApi21.java84 public void setTint(int tintColor) { argument
86 super.setTint(tintColor);
88 mDrawable.setTint(tintColor);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DSlashDrawable.java190 public void setTint(@ColorInt int tintColor) { argument
191 super.setTint(tintColor);
192 mDrawable.setTint(tintColor);
193 mPaint.setColor(tintColor);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DShadowKeyDrawable.java92 public void setTint(int tintColor) { argument
93 super.setTint(tintColor);
/frameworks/support/slices/view/src/main/java/androidx/slice/widget/
H A DGridRowView.java153 public void setTint(@ColorInt int tintColor) { argument
154 super.setTint(tintColor);
H A DSliceChildView.java125 public void setTint(@ColorInt int tintColor) { argument
126 mTintColor = tintColor;
H A DRowView.java164 public void setTint(@ColorInt int tintColor) { argument
165 super.setTint(tintColor);
H A DSliceView.java491 public void setTint(int tintColor) { argument
492 setAccentColor(tintColor);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationBackgroundView.java147 public void setTint(int tintColor) { argument
148 if (tintColor != 0) {
149 mBackground.setColorFilter(tintColor, PorterDuff.Mode.SRC_ATOP);
153 mTintColor = tintColor;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java622 * @param tintColor Color to use for tinting this drawable
626 public void setTint(@ColorInt int tintColor) { argument
627 setTintList(ColorStateList.valueOf(tintColor));

Completed in 160 milliseconds