Searched refs:tint (Results 1 - 25 of 68) sorted by relevance

123

/frameworks/support/v4/donut/android/support/v4/graphics/drawable/
H A DTintAwareDrawable.java31 void setTint(@ColorInt int tint); argument
32 void setTintList(ColorStateList tint); argument
H A DDrawableCompatBase.java34 public static void setTint(Drawable drawable, int tint) { argument
36 ((TintAwareDrawable) drawable).setTint(tint);
40 public static void setTintList(Drawable drawable, ColorStateList tint) { argument
42 ((TintAwareDrawable) drawable).setTintList(tint);
/frameworks/support/v4/api21/android/support/v4/widget/
H A DCompoundButtonCompatLollipop.java25 static void setButtonTintList(CompoundButton button, ColorStateList tint) { argument
26 button.setButtonTintList(tint);
/frameworks/support/v4/donut/android/support/v4/view/
H A DTintableBackgroundView.java30 * Applies a tint to the background drawable. Does not modify the current tint
34 * mutate the drawable and apply the specified tint and tint mode.
36 * @param tint the tint to apply, may be {@code null} to clear tint
40 void setSupportBackgroundTintList(@Nullable ColorStateList tint); argument
43 * Return the tint applied to the background drawable, if specified.
45 * @return the tint applie
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatBackgroundHelper.java48 ColorStateList tint = mDrawableManager.getTintList(mView.getContext(),
50 if (tint != null) {
51 setInternalBackgroundTint(tint);
70 // Update the default background tint
77 // We don't know that this drawable is, so we need to clear the default background tint
81 void setSupportBackgroundTintList(ColorStateList tint) { argument
85 mBackgroundTint.mTintList = tint;
116 // effect on any widgets using the compat tint on API 21 (EditText)
130 void setInternalBackgroundTint(ColorStateList tint) { argument
131 if (tint !
[all...]
H A DAppCompatDrawableManager.java247 // First mutate the Drawable, then wrap it and set the tint list
281 // If we didn't tint using a ColorFilter, and we're set to fail if we don't
508 ColorStateList tint = getTintListFromCache(context, resId);
510 if (tint == null) {
513 tint = getColorStateList(context, R.color.abc_tint_edittext);
515 tint = getColorStateList(context, R.color.abc_tint_switch_track);
517 tint = getColorStateList(context, R.color.abc_tint_switch_thumb);
519 tint = createDefaultButtonColorStateList(context);
521 tint = createBorderlessButtonColorStateList(context);
523 tint
628 tintDrawable(Drawable drawable, TintInfo tint, int[] state) argument
651 createTintFilter(ColorStateList tint, PorterDuff.Mode tintMode, final int[] state) argument
[all...]
H A DAppCompatCheckBox.java35 * <li>Allows dynamic tint of it background via the background tint methods in
37 * <li>Allows setting of the background tint using {@link R.attr#buttonTint} and
92 public void setSupportButtonTintList(@Nullable ColorStateList tint) { argument
94 mCompoundButtonHelper.setSupportButtonTintList(tint);
H A DAppCompatRadioButton.java35 * <li>Allows dynamic tint of it background via the background tint methods in
37 * <li>Allows setting of the background tint using {@link R.attr#buttonTint} and
92 public void setSupportButtonTintList(@Nullable ColorStateList tint) { argument
94 mCompoundButtonHelper.setSupportButtonTintList(tint);
H A DAppCompatAutoCompleteTextView.java36 * <li>Allows dynamic tint of it background via the background tint methods in
38 * <li>Allows setting of the background tint using {@link R.attr#backgroundTint} and
116 public void setSupportBackgroundTintList(@Nullable ColorStateList tint) { argument
118 mBackgroundTintHelper.setSupportBackgroundTintList(tint);
H A DAppCompatButton.java38 * <li>Allows dynamic tint of it background via the background tint methods in
40 * <li>Allows setting of the background tint using {@link R.attr#backgroundTint} and
96 public void setSupportBackgroundTintList(@Nullable ColorStateList tint) { argument
98 mBackgroundTintHelper.setSupportBackgroundTintList(tint);
H A DAppCompatCompoundButtonHelper.java82 void setSupportButtonTintList(ColorStateList tint) { argument
83 mButtonTintList = tint;
127 // stateful before applying the tint, so let's try again.
H A DAppCompatEditText.java36 * <li>Allows dynamic tint of it background via the background tint methods in
38 * <li>Allows setting of the background tint using {@link R.attr#backgroundTint} and
94 public void setSupportBackgroundTintList(@Nullable ColorStateList tint) { argument
96 mBackgroundTintHelper.setSupportBackgroundTintList(tint);
/frameworks/support/v4/api21/android/support/v4/graphics/drawable/
H A DDrawableCompatLollipop.java44 public static void setTint(Drawable drawable, int tint) { argument
45 drawable.setTint(tint);
48 public static void setTintList(Drawable drawable, ColorStateList tint) { argument
49 drawable.setTintList(tint);
H A DDrawableWrapperLollipop.java63 public void setTintList(ColorStateList tint) { argument
65 super.setTintList(tint);
67 mDrawable.setTintList(tint);
/frameworks/support/v4/donut/android/support/v4/widget/
H A DTintableCompoundButton.java31 * Applies a tint to the button drawable. Does not modify the current tint
36 * should automatically mutate the drawable and apply the specified tint and tint mode.
38 * @param tint the tint to apply, may be {@code null} to clear tint
40 public void setSupportButtonTintList(@Nullable ColorStateList tint); argument
43 * Returns the tint applied to the button drawable
51 * Specifies the blending mode which should be used to apply the tint specifie
[all...]
H A DCompoundButtonCompatDonut.java34 static void setButtonTintList(CompoundButton button, ColorStateList tint) { argument
36 ((TintableCompoundButton) button).setSupportButtonTintList(tint);
/frameworks/support/v4/tests/java/android/support/v4/graphics/
H A DTestTintAwareDrawable.java39 public void setTintList(ColorStateList tint) { argument
H A DDrawableCompatTest.java115 // Assert that the tint aware drawable was not wrapped
123 final ColorStateList tint = ColorStateList.valueOf(Color.BLACK);
126 // Now set the tint list and mode using DrawableCompat
127 DrawableCompat.setTintList(d, tint);
131 verify(d).setTintList(tint);
/frameworks/support/v4/java/android/support/v4/widget/
H A DCompoundButtonCompat.java50 void setButtonTintList(CompoundButton button, ColorStateList tint); argument
59 public void setButtonTintList(CompoundButton button, ColorStateList tint) { argument
60 CompoundButtonCompatDonut.setButtonTintList(button, tint);
86 public void setButtonTintList(CompoundButton button, ColorStateList tint) { argument
87 CompoundButtonCompatLollipop.setButtonTintList(button, tint);
116 * Applies a tint to the button drawable. Does not modify the current tint
120 * automatically mutate the drawable and apply the specified tint and tint
123 * @param tint th
127 setButtonTintList(@onNull CompoundButton button, @Nullable ColorStateList tint) argument
[all...]
/frameworks/support/v4/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java48 void setTint(Drawable drawable, int tint); argument
49 void setTintList(Drawable drawable, ColorStateList tint); argument
88 public void setTint(Drawable drawable, int tint) { argument
89 DrawableCompatBase.setTint(drawable, tint);
93 public void setTintList(Drawable drawable, ColorStateList tint) { argument
94 DrawableCompatBase.setTintList(drawable, tint);
223 public void setTint(Drawable drawable, int tint) { argument
224 DrawableCompatLollipop.setTint(drawable, tint);
228 public void setTintList(Drawable drawable, ColorStateList tint) { argument
229 DrawableCompatLollipop.setTintList(drawable, tint);
380 setTint(@onNull Drawable drawable, @ColorInt int tint) argument
390 setTintList(@onNull Drawable drawable, @Nullable ColorStateList tint) argument
[all...]
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
H A DCat.java113 public static void tint(int color, Drawable ... ds) { method in class:Cat
142 tint(mBodyColor, D.body, D.head, D.leg1, D.leg2, D.leg3, D.leg4, D.tail,
144 tint(0x20000000, D.leg2Shadow, D.tailShadow);
146 tint(0xFFFFFFFF, D.leftEye, D.rightEye, D.mouth, D.nose);
148 tint(isDark(mBodyColor) ? 0xFFEF9A9A : 0x20D50000, D.leftEarInside, D.rightEarInside);
150 tint(chooseP(nsr, P_BELLY_COLORS), D.belly);
151 tint(chooseP(nsr, P_BELLY_COLORS), D.back);
153 tint(faceColor, D.faceSpot);
155 tint(0xFF000000, D.mouth, D.nose);
159 tint(
[all...]
/frameworks/support/design/base/android/support/design/widget/
H A DCircularBorderDrawable.java125 void setBorderTint(ColorStateList tint) { argument
126 if (tint != null) {
127 mCurrentBorderTintColor = tint.getColorForState(getState(), mCurrentBorderTintColor);
129 mBorderTint = tint;
/frameworks/support/v7/appcompat/src/android/support/v7/graphics/drawable/
H A DDrawableWrapper.java186 public void setTint(int tint) { argument
187 DrawableCompat.setTint(mDrawable, tint);
191 public void setTintList(ColorStateList tint) { argument
192 DrawableCompat.setTintList(mDrawable, tint);
/frameworks/support/v7/cardview/api21/android/support/v7/widget/
H A DRoundRectDrawable.java168 public void setTintList(ColorStateList tint) { argument
169 mTint = tint;
202 * Ensures the tint filter is consistent with the current tint color and
205 private PorterDuffColorFilter createTintFilter(ColorStateList tint, PorterDuff.Mode tintMode) { argument
206 if (tint == null || tintMode == null) {
209 final int color = tint.getColorForState(getState(), Color.TRANSPARENT);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DISub.aidl105 * Set SIM icon tint color by simInfo index
106 * @param tint the icon tint color of the SIM
110 int setIconTint(int tint, int subId);

Completed in 508 milliseconds

123