Searched defs:tintMode (Results 1 - 25 of 56) sorted by relevance

123

/frameworks/support/v4/api21/android/support/v4/widget/
H A DCompoundButtonCompatLollipop.java33 static void setButtonTintMode(CompoundButton button, PorterDuff.Mode tintMode) { argument
34 button.setButtonTintMode(tintMode);
/frameworks/support/v4/donut/android/support/v4/graphics/drawable/
H A DTintAwareDrawable.java33 void setTintMode(PorterDuff.Mode tintMode); argument
H A DDrawableCompatBase.java46 public static void setTintMode(Drawable drawable, PorterDuff.Mode tintMode) { argument
48 ((TintAwareDrawable) drawable).setTintMode(tintMode);
/frameworks/support/v4/donut/android/support/v4/view/
H A DTintableBackgroundView.java55 * @param tintMode the blending mode used to apply the tint, may be
59 void setSupportBackgroundTintMode(@Nullable PorterDuff.Mode tintMode); argument
/frameworks/support/v4/donut/android/support/v4/widget/
H A DCompoundButtonCompatDonut.java47 static void setButtonTintMode(CompoundButton button, PorterDuff.Mode tintMode) { argument
49 ((TintableCompoundButton) button).setSupportButtonTintMode(tintMode);
H A DTintableCompoundButton.java55 * @param tintMode the blending mode used to apply the tint, may be
61 public void setSupportButtonTintMode(@Nullable PorterDuff.Mode tintMode); argument
/frameworks/support/v4/tests/java/android/support/v4/graphics/
H A DTestTintAwareDrawable.java44 public void setTintMode(PorterDuff.Mode tintMode) { argument
/frameworks/support/v7/appcompat/tests/src/android/support/v7/testutils/
H A DAppCompatTintableViewActions.java96 public static ViewAction setBackgroundTintMode(final PorterDuff.Mode tintMode) { argument
113 tintableBackgroundView.setSupportBackgroundTintMode(tintMode);
H A DTestUtilsActions.java118 public static ViewAction setBackgroundTintModeViewCompat(final PorterDuff.Mode tintMode) { argument
134 ViewCompat.setBackgroundTintMode(view, tintMode);
/frameworks/support/v4/java/android/support/v4/widget/
H A DCompoundButtonCompat.java52 void setButtonTintMode(CompoundButton button, PorterDuff.Mode tintMode); argument
69 public void setButtonTintMode(CompoundButton button, PorterDuff.Mode tintMode) { argument
70 CompoundButtonCompatDonut.setButtonTintMode(button, tintMode);
96 public void setButtonTintMode(CompoundButton button, PorterDuff.Mode tintMode) { argument
97 CompoundButtonCompatLollipop.setButtonTintMode(button, tintMode);
146 * @param tintMode the blending mode used to apply the tint, may be
153 @Nullable PorterDuff.Mode tintMode) {
154 IMPL.setButtonTintMode(button, tintMode);
152 setButtonTintMode(@onNull CompoundButton button, @Nullable PorterDuff.Mode tintMode) argument
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatCheckBox.java115 public void setSupportButtonTintMode(@Nullable PorterDuff.Mode tintMode) { argument
117 mCompoundButtonHelper.setSupportButtonTintMode(tintMode);
H A DAppCompatRadioButton.java115 public void setSupportButtonTintMode(@Nullable PorterDuff.Mode tintMode) { argument
117 mCompoundButtonHelper.setSupportButtonTintMode(tintMode);
H A DAppCompatAutoCompleteTextView.java142 public void setSupportBackgroundTintMode(@Nullable PorterDuff.Mode tintMode) { argument
144 mBackgroundTintHelper.setSupportBackgroundTintMode(tintMode);
H A DAppCompatBackgroundHelper.java95 void setSupportBackgroundTintMode(PorterDuff.Mode tintMode) { argument
99 mBackgroundTint.mTintMode = tintMode;
H A DAppCompatEditText.java120 public void setSupportBackgroundTintMode(@Nullable PorterDuff.Mode tintMode) { argument
122 mBackgroundTintHelper.setSupportBackgroundTintMode(tintMode);
H A DAppCompatImageButton.java123 public void setSupportBackgroundTintMode(@Nullable PorterDuff.Mode tintMode) { argument
125 mBackgroundTintHelper.setSupportBackgroundTintMode(tintMode);
H A DAppCompatImageView.java123 public void setSupportBackgroundTintMode(@Nullable PorterDuff.Mode tintMode) { argument
125 mBackgroundTintHelper.setSupportBackgroundTintMode(tintMode);
H A DAppCompatMultiAutoCompleteTextView.java142 public void setSupportBackgroundTintMode(@Nullable PorterDuff.Mode tintMode) { argument
144 mBackgroundTintHelper.setSupportBackgroundTintMode(tintMode);
H A DAppCompatTextView.java120 public void setSupportBackgroundTintMode(@Nullable PorterDuff.Mode tintMode) { argument
122 mBackgroundTintHelper.setSupportBackgroundTintMode(tintMode);
H A DAppCompatButton.java122 public void setSupportBackgroundTintMode(@Nullable PorterDuff.Mode tintMode) { argument
124 mBackgroundTintHelper.setSupportBackgroundTintMode(tintMode);
H A DAppCompatCompoundButtonHelper.java93 void setSupportButtonTintMode(@Nullable PorterDuff.Mode tintMode) { argument
94 mButtonTintMode = tintMode;
H A DAppCompatSeekBarHelper.java110 void setTickMarkTintMode(@Nullable PorterDuff.Mode tintMode) { argument
111 mTickMarkTintMode = tintMode;
/frameworks/support/v4/api21/android/support/v4/graphics/drawable/
H A DDrawableCompatLollipop.java52 public static void setTintMode(Drawable drawable, PorterDuff.Mode tintMode) { argument
53 drawable.setTintMode(tintMode);
H A DDrawableWrapperLollipop.java81 public void setTintMode(PorterDuff.Mode tintMode) { argument
83 super.setTintMode(tintMode);
85 mDrawable.setTintMode(tintMode);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DColorDrawable.java189 public void setTintMode(Mode tintMode) { argument
190 mColorState.mTintMode = tintMode;
191 mTintFilter = updateTintFilter(mTintFilter, mColorState.mTint, tintMode);

Completed in 1749 milliseconds

123