Home
last modified time | relevance | path

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

/frameworks/support/compat/gingerbread/android/support/v4/graphics/drawable/
DDrawableWrapperGingerbread.java132 final ColorStateList tintList = (isCompatTintEnabled() && mState != null) in isStateful() local
135 return (tintList != null && tintList.isStateful()) || mDrawable.isStateful(); in isStateful()
282 final ColorStateList tintList = mState.mTint; in updateTint() local
285 if (tintList != null && tintMode != null) { in updateTint()
286 final int color = tintList.getColorForState(state, tintList.getDefaultColor()); in updateTint()
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DAppCompatBackgroundHelper.java201 final ColorStateList tintList = ViewCompat.getBackgroundTintList(mView); in applyFrameworkTintUsingColorFilter() local
202 if (tintList != null) { in applyFrameworkTintUsingColorFilter()
204 info.mTintList = tintList; in applyFrameworkTintUsingColorFilter()
DAppCompatTextHelper.java173 final ColorStateList tintList = drawableManager.getTintList(context, drawableId); in createTintInfo() local
174 if (tintList != null) { in createTintInfo()
177 tintInfo.mTintList = tintList; in createTintInfo()
DAppCompatDrawableManager.java256 final ColorStateList tintList = getTintList(context, resId); in tintDrawable() local
257 if (tintList != null) { in tintDrawable()
263 DrawableCompat.setTintList(drawable, tintList); in tintDrawable()
573 @NonNull ColorStateList tintList) { in addTintListToCache() argument
582 themeTints.append(resId, tintList); in addTintListToCache()
/frameworks/support/compat/gingerbread/android/support/v4/view/
DViewCompatBase.java44 static void setBackgroundTintList(View view, ColorStateList tintList) { in setBackgroundTintList() argument
46 ((TintableBackgroundView) view).setSupportBackgroundTintList(tintList); in setBackgroundTintList()
/frameworks/support/compat/api21/android/support/v4/view/
DViewCompatLollipop.java86 static void setBackgroundTintList(View view, ColorStateList tintList) { in setBackgroundTintList() argument
87 view.setBackgroundTintList(tintList); in setBackgroundTintList()
/frameworks/support/design/src/android/support/design/internal/
DNavigationMenuItemView.java244 void setIconTintList(ColorStateList tintList) { in setIconTintList() argument
245 mIconTintList = tintList; in setIconTintList()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawable/
DUserIconDrawable.java265 public void setTintList(ColorStateList tintList) { in setTintList() argument
266 mTintColor = tintList; in setTintList()
/frameworks/support/compat/java/android/support/v4/view/
DViewCompat.java460 void setBackgroundTintList(View view, ColorStateList tintList); in setBackgroundTintList() argument
984 public void setBackgroundTintList(View view, ColorStateList tintList) { in setBackgroundTintList() argument
985 ViewCompatBase.setBackgroundTintList(view, tintList); in setBackgroundTintList()
1722 public void setBackgroundTintList(View view, ColorStateList tintList) { in setBackgroundTintList() argument
1723 ViewCompatLollipop.setBackgroundTintList(view, tintList); in setBackgroundTintList()
3113 public static void setBackgroundTintList(View view, ColorStateList tintList) { in setBackgroundTintList() argument
3114 IMPL.setBackgroundTintList(view, tintList); in setBackgroundTintList()
/frameworks/base/graphics/java/android/graphics/drawable/
DIcon.java616 public Icon setTintList(ColorStateList tintList) { in setTintList() argument
617 mTintList = tintList; in setTintList()
/frameworks/support/design/src/android/support/design/widget/
DTextInputLayout.java1160 public void setPasswordVisibilityToggleTintList(@Nullable ColorStateList tintList) { in setPasswordVisibilityToggleTintList() argument
1161 mPasswordToggleTintList = tintList; in setPasswordVisibilityToggleTintList()
/frameworks/base/core/java/android/widget/
DTextView.java2702 final ColorStateList tintList = mDrawables.mTintList; in applyCompoundDrawableTint() local
2723 dr.setTintList(tintList); in applyCompoundDrawableTint()