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

/frameworks/support/compat/tests/java/android/support/v4/graphics/
H A DTestTintAwareDrawable.java31 public void setTint(int tintColor) { argument
/frameworks/support/compat/api21/android/support/v4/graphics/drawable/
H A DDrawableWrapperApi21.java74 public void setTint(int tintColor) { argument
76 super.setTint(tintColor);
78 mDrawable.setTint(tintColor);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationBackgroundView.java102 public void setTint(int tintColor) { argument
103 if (tintColor != 0) {
104 mBackground.setColorFilter(tintColor, PorterDuff.Mode.SRC_ATOP);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
H A DUsageGraph.java268 private void drawDivider(int y, Canvas canvas, int tintColor) { argument
270 if (tintColor != -1) {
271 mTintedDivider.setTint(tintColor);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java619 * @param tintColor Color to use for tinting this drawable
623 public void setTint(@ColorInt int tintColor) { argument
624 setTintList(ColorStateList.valueOf(tintColor));

Completed in 648 milliseconds