ImageView的tint属性

Posted 我的小侯子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ImageView的tint属性相关的知识,希望对你有一定的参考价值。

为ImageView图片重新着色
透明的部分不会改变

1.第一种,设置单一颜色

————>

imageView.setColorFilter(Color.RED);

2.可以设置单一颜色或者selector

Drawable icon = getResources().getDrawable(R.drawable.tabbar_stat);
Drawable tintIcon = DrawableCompat.wrap(icon);
ColorStateList csl=getResources().getColorStateList(R.color.colorAccent);
DrawableCompat.setTintList(tintIcon,csl);
imageView.setImageDrawable(tintIcon);

color的selector:selector_tint.xml(color包)

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:color="@color/colorAccent" android:state_pressed="true"/>
    <item android:color="@color/colorPrimary"/>
</selector>

设置selector

Drawable icon = getResources().getDrawable(R.drawable.tabbar_stat);
Drawable tintIcon = DrawableCompat.wrap(icon);
ColorStateList csl=getResources().getColorStateList(R.color.selector_tint);
DrawableCompat.setTintList(tintIcon,csl);
imageView.setImageDrawable(tintIcon);

以上是关于ImageView的tint属性的主要内容,如果未能解决你的问题,请参考以下文章

根据状态更改 UIButton 中 ImageView 的 tint 颜色

Android 安装包优化Tint 着色器 ( 简介 | 布局文件中的 Tint 着色器基本用法 | 代码中使用 Tint 着色器添加颜色效果 )

Android开发小技巧-动态设置Drawable与Tint

Android改变图片背景颜色tint(着色)或 backgroundTint

详解 UIView 的 Tint Color 属性

详解 UIView 的 Tint Color 属性