Home
last modified time | relevance | path

Searched refs:mTintList (Results 1 – 9 of 9) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DAppCompatBackgroundHelper.java103 mBackgroundTint.mTintList = null; in setSupportBackgroundTintList()
123 mBackgroundTint.mTintList = updated; in updateBackgroundTint()
129 if (mBackgroundTint.mTintList != mBackgroundTint.mOriginalTintList) { in updateBackgroundTint()
130 mBackgroundTint.mTintList = mBackgroundTint.mOriginalTintList; in updateBackgroundTint()
138 return mBackgroundTint != null ? mBackgroundTint.mTintList : null; in getSupportBackgroundTintList()
180 mInternalBackgroundTint.mTintList = tint; in setInternalBackgroundTint()
220 info.mTintList = tintList; in applyFrameworkTintUsingColorFilter()
DTintInfo.java23 public ColorStateList mTintList; field in TintInfo
29 mTintList = null; in clear()
DAppCompatTextHelper.java190 tintInfo.mTintList = tintList; in createTintInfo()
DAppCompatDrawableManager.java672 tint.mHasTintList ? tint.mTintList : null, in tintDrawable()
/frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/view/
DNavigationBarButton.java120 private ColorStateList mTintList = null; field in NavigationBarButton.TintedDrawable
139 mTintList = colors; in setTintListCompat()
146 if (mTintList != null) { in updateState()
147 final int color = mTintList.getColorForState(getState(), 0); in updateState()
/frameworks/base/graphics/java/android/graphics/drawable/
DIcon.java75 private ColorStateList mTintList; field in Icon
273 if (result != null && (mTintList != null || mTintMode != DEFAULT_TINT_MODE)) { in loadDrawable()
275 result.setTintList(mTintList); in loadDrawable()
617 mTintList = tintList; in setTintList()
634 return (mTintList != null) || (mTintMode != DEFAULT_TINT_MODE); in hasTint()
678 if (mTintList != null) { in toString()
681 for (int c : mTintList.getColors()) { in toString()
733 mTintList = ColorStateList.CREATOR.createFromParcel(in); in Icon()
758 if (mTintList == null) { in writeToParcel()
762 mTintList.writeToParcel(dest, flags); in writeToParcel()
DDrawableContainer.java191 if (mDrawableContainerState.mTintList != tint) { in setTintList()
192 mDrawableContainerState.mTintList = tint; in setTintList()
525 d.setTintList(mDrawableContainerState.mTintList); in initializeDrawableForDisplay()
710 ColorStateList mTintList; field in DrawableContainer.DrawableContainerState
741 mTintList = orig.mTintList; in DrawableContainerState()
/frameworks/base/core/java/android/view/
DView.java3550 ColorStateList mTintList; field in View.TintInfo
4515 mBackgroundTint.mTintList = a.getColorStateList(
18395 mBackgroundTint.mTintList = tint; in setBackgroundTintList()
18410 return mBackgroundTint != null ? mBackgroundTint.mTintList : null; in getBackgroundTintList()
18455 mBackground.setTintList(tintInfo.mTintList); in applyBackgroundTint()
18610 mForegroundInfo.mTintInfo.mTintList = tint; in setForegroundTintList()
18626 ? mForegroundInfo.mTintInfo.mTintList : null; in getForegroundTintList()
18676 mForegroundInfo.mDrawable.setTintList(tintInfo.mTintList); in applyForegroundTint()
/frameworks/base/core/java/android/widget/
DTextView.java366 ColorStateList mTintList; field in TextView.Drawables
1357 mDrawables.mTintList = drawableTint; in TextView()
2647 mDrawables.mTintList = tint; in setCompoundDrawableTintList()
2659 return mDrawables != null ? mDrawables.mTintList : null; in getCompoundDrawableTintList()
2702 final ColorStateList tintList = mDrawables.mTintList; in applyCompoundDrawableTint()