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

/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DImageViewCompat.java49 @Nullable ColorStateList tintList) {
51 view.setImageTintList(tintList);
67 ((TintableImageSourceView) view).setSupportImageTintList(tintList);
48 setImageTintList(@onNull ImageView view, @Nullable ColorStateList tintList) argument
/frameworks/support/compat/src/main/java/androidx/core/graphics/drawable/
H A DWrappedDrawableApi14.java130 final ColorStateList tintList = (isCompatTintEnabled() && mState != null)
133 return (tintList != null && tintList.isStateful()) || mDrawable.isStateful();
298 final ColorStateList tintList = mState.mTint;
301 if (tintList != null && tintMode != null) {
302 final int color = tintList.getColorForState(state, tintList.getDefaultColor());
H A DIconCompat.java315 * @param tintList as in {@link Drawable#setTintList(ColorStateList)}, null to remove tint
318 public IconCompat setTintList(ColorStateList tintList) { argument
319 mTintList = tintList;
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DAppCompatBackgroundHelper.java179 final ColorStateList tintList = ViewCompat.getBackgroundTintList(mView);
180 if (tintList != null) {
182 info.mTintList = tintList;
H A DAppCompatImageHelper.java202 final ColorStateList tintList = ImageViewCompat.getImageTintList(mView);
203 if (tintList != null) {
205 info.mTintList = tintList;
H A DAppCompatTextHelper.java363 final ColorStateList tintList = drawableManager.getTintList(context, drawableId);
364 if (tintList != null) {
367 tintInfo.mTintList = tintList;
H A DAppCompatDrawableManager.java260 final ColorStateList tintList = getTintList(context, resId);
261 if (tintList != null) {
267 DrawableCompat.setTintList(drawable, tintList);
568 @NonNull ColorStateList tintList) {
577 themeTints.append(resId, tintList);
567 addTintListToCache(@onNull Context context, @DrawableRes int resId, @NonNull ColorStateList tintList) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DScreenDecorations.java170 ColorStateList tintList = ColorStateList.valueOf(tint);
171 ((ImageView) mOverlay.findViewById(R.id.left)).setImageTintList(tintList);
172 ((ImageView) mOverlay.findViewById(R.id.right)).setImageTintList(tintList);
173 ((ImageView) mBottomOverlay.findViewById(R.id.left)).setImageTintList(tintList);
174 ((ImageView) mBottomOverlay.findViewById(R.id.right)).setImageTintList(tintList);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawable/
H A DUserIconDrawable.java277 public void setTintList(ColorStateList tintList) { argument
278 mTintColor = tintList;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DIcon.java675 * @param tintList as in {@link Drawable#setTintList(ColorStateList)}, null to remove tint
678 public Icon setTintList(ColorStateList tintList) { argument
679 mTintList = tintList;
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DViewCompat.java2360 public static void setBackgroundTintList(@NonNull View view, ColorStateList tintList) { argument
2362 view.setBackgroundTintList(tintList);
2378 ((TintableBackgroundView) view).setSupportBackgroundTintList(tintList);
/frameworks/base/core/java/android/widget/
H A DTextView.java3203 final ColorStateList tintList = mDrawables.mTintList;
3224 dr.setTintList(tintList);

Completed in 188 milliseconds