Home
last modified time | relevance | path

Searched refs:tintList (Results 1 – 13 of 13) sorted by relevance

/frameworks/support/compat/java/android/support/v4/widget/
DImageViewCompat.java33 void setImageTintList(ImageView view, ColorStateList tintList); in setImageTintList() argument
49 public void setImageTintList(ImageView view, ColorStateList tintList) { in setImageTintList() argument
51 ((TintableImageSourceView) view).setSupportImageTintList(tintList); in setImageTintList()
78 public void setImageTintList(ImageView view, ColorStateList tintList) { in setImageTintList() argument
79 view.setImageTintList(tintList); in setImageTintList()
140 public static void setImageTintList(ImageView view, ColorStateList tintList) { in setImageTintList() argument
141 IMPL.setImageTintList(view, tintList); in setImageTintList()
/frameworks/support/compat/java/android/support/v4/graphics/drawable/
DDrawableWrapperApi14.java140 final ColorStateList tintList = (isCompatTintEnabled() && mState != null) in isStateful() local
143 return (tintList != null && tintList.isStateful()) || mDrawable.isStateful(); in isStateful()
293 final ColorStateList tintList = mState.mTint; in updateTint() local
296 if (tintList != null && tintMode != null) { in updateTint()
297 final int color = tintList.getColorForState(state, tintList.getDefaultColor()); in updateTint()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DRoundedCorners.java106 ColorStateList tintList = ColorStateList.valueOf(tint); in setupRounding()
107 ((ImageView) mOverlay.findViewById(id.left)).setImageTintList(tintList); in setupRounding()
108 ((ImageView) mOverlay.findViewById(id.right)).setImageTintList(tintList); in setupRounding()
109 ((ImageView) mBottomOverlay.findViewById(id.left)).setImageTintList(tintList); in setupRounding()
110 ((ImageView) mBottomOverlay.findViewById(id.right)).setImageTintList(tintList); in setupRounding()
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DAppCompatBackgroundHelper.java178 final ColorStateList tintList = ViewCompat.getBackgroundTintList(mView); in applyFrameworkTintUsingColorFilter() local
179 if (tintList != null) { in applyFrameworkTintUsingColorFilter()
181 info.mTintList = tintList; in applyFrameworkTintUsingColorFilter()
DAppCompatImageHelper.java201 final ColorStateList tintList = ImageViewCompat.getImageTintList(mView); in applyFrameworkTintUsingColorFilter() local
202 if (tintList != null) { in applyFrameworkTintUsingColorFilter()
204 info.mTintList = tintList; in applyFrameworkTintUsingColorFilter()
DAppCompatTextHelper.java299 final ColorStateList tintList = drawableManager.getTintList(context, drawableId); in createTintInfo() local
300 if (tintList != null) { in createTintInfo()
303 tintInfo.mTintList = tintList; in createTintInfo()
DAppCompatDrawableManager.java260 final ColorStateList tintList = getTintList(context, resId); in tintDrawable() local
261 if (tintList != null) { in tintDrawable()
267 DrawableCompat.setTintList(drawable, tintList); in tintDrawable()
568 @NonNull ColorStateList tintList) { in addTintListToCache() argument
577 themeTints.append(resId, tintList); in addTintListToCache()
/frameworks/support/design/src/android/support/design/internal/
DNavigationMenuItemView.java251 void setIconTintList(ColorStateList tintList) { in setIconTintList() argument
252 mIconTintList = tintList; in setIconTintList()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawable/
DUserIconDrawable.java266 public void setTintList(ColorStateList tintList) { in setTintList() argument
267 mTintColor = tintList; in setTintList()
/frameworks/support/compat/java/android/support/v4/view/
DViewCompat.java811 public void setBackgroundTintList(View view, ColorStateList tintList) { in setBackgroundTintList() argument
813 ((TintableBackgroundView) view).setSupportBackgroundTintList(tintList); in setBackgroundTintList()
1351 public void setBackgroundTintList(View view, ColorStateList tintList) { in setBackgroundTintList() argument
1352 view.setBackgroundTintList(tintList); in setBackgroundTintList()
3202 public static void setBackgroundTintList(View view, ColorStateList tintList) { in setBackgroundTintList() argument
3203 IMPL.setBackgroundTintList(view, tintList); in setBackgroundTintList()
/frameworks/base/graphics/java/android/graphics/drawable/
DIcon.java642 public Icon setTintList(ColorStateList tintList) { in setTintList() argument
643 mTintList = tintList; in setTintList()
/frameworks/support/design/src/android/support/design/widget/
DTextInputLayout.java1302 public void setPasswordVisibilityToggleTintList(@Nullable ColorStateList tintList) { in setPasswordVisibilityToggleTintList() argument
1303 mPasswordToggleTintList = tintList; in setPasswordVisibilityToggleTintList()
/frameworks/base/core/java/android/widget/
DTextView.java3307 final ColorStateList tintList = mDrawables.mTintList;
3328 dr.setTintList(tintList);