我正在尝试通过代码更改白色标记图像的颜色。我已经读过下面的代码应该改变颜色,但我的标记仍然是白色的。
Drawable.setColorFilter( 0xffff0000, Mode.MULTIPLY )
我错过了什么?有没有其他方法可以更改我的 res 文件夹中的可绘制对象的颜色?
我正在尝试通过代码更改白色标记图像的颜色。我已经读过下面的代码应该改变颜色,但我的标记仍然是白色的。
Drawable.setColorFilter( 0xffff0000, Mode.MULTIPLY )
我错过了什么?有没有其他方法可以更改我的 res 文件夹中的可绘制对象的颜色?
尝试这个:
Drawable unwrappedDrawable = AppCompatResources.getDrawable(context, R.drawable.my_drawable);
Drawable wrappedDrawable = DrawableCompat.wrap(unwrappedDrawable);
DrawableCompat.setTint(wrappedDrawable, Color.RED);
使用DrawableCompat
很重要,因为它在 API 22 和更早版本的设备上提供了向后兼容性和错误修复。
你可以试试这个 svg vector drawable
DrawableCompat.setTint(
DrawableCompat.wrap(myImageView.getDrawable()),
ContextCompat.getColor(context, R.color.another_nice_color)
);
您可能需要在可绘制对象上调用 mutate() ,否则所有图标都会受到影响。
Drawable icon = ContextCompat.getDrawable(getContext(), R.drawable.ic_my_icon).mutate();
TypedValue typedValue = new TypedValue();
getContext().getTheme().resolveAttribute(R.attr.colorIcon, typedValue, true);
icon.setColorFilter(typedValue.data, PorterDuff.Mode.SRC_ATOP);
你可以试试这个ImageView
。使用setColorFilter()
.
imageView.setColorFilter(ContextCompat.getColor(context, R.color.colorWhite));
在 Lollipop、android 5.+ 上执行此操作的另一种方法是在可绘制的位图上设置色调,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/ic_back"
android:tint="@color/red_tint"/>
如果您想在可绘制对象上使用的颜色数量有限,这将适用于您。查看我的博客文章了解更多信息。
我编写了一个通用函数,您可以在其中传递上下文,图标是 id 可绘制/mipmap 图像图标和该图标所需的新颜色。
这个函数返回一个drawable。
public static Drawable changeDrawableColor(Context context,int icon, int newColor) {
Drawable mDrawable = ContextCompat.getDrawable(context, icon).mutate();
mDrawable.setColorFilter(new PorterDuffColorFilter(newColor, PorterDuff.Mode.SRC_IN));
return mDrawable;
}
changeDrawableColor(getContext(),R.mipmap.ic_action_tune, Color.WHITE);
您可以尝试使用 ColorMatrixColorFilter,因为您的关键颜色是白色:
// Assuming "color" is your target color
float r = Color.red(color) / 255f;
float g = Color.green(color) / 255f;
float b = Color.blue(color) / 255f;
ColorMatrix cm = new ColorMatrix(new float[] {
// Change red channel
r, 0, 0, 0, 0,
// Change green channel
0, g, 0, 0, 0,
// Change blue channel
0, 0, b, 0, 0,
// Keep alpha channel
0, 0, 0, 1, 0,
});
ColorMatrixColorFilter cf = new ColorMatrixColorFilter(cm);
myDrawable.setColorFilter(cf);
这对我有用。确保将“ff”放在 0x 和颜色代码之间。像这样 0xff2196F3
Drawable mDrawable = ContextCompat.getDrawable(MainActivity.this,R.drawable.ic_vector_home);
mDrawable.setColorFilter(new
PorterDuffColorFilter(0xff2196F3,PorterDuff.Mode.SRC_IN));
与接受的答案相同,但更简单的便捷方法:
val myDrawable = ContextCompat.getDrawable(context, R.drawable.my_drawable)
myDrawable.setColorFilter(Color.GREEN, PorterDuff.Mode.SRC_IN)
setCompoundDrawablesWithIntrinsicBounds(myDrawable, null, null, null)
注意,这里的代码是 Kotlin。
对于那些使用 Kotlin的人来说,一个简单的扩展功能:
fun Drawable.tint(context: Context, @ColorRes color: Int) {
DrawableCompat.setTint(this, context.resources.getColor(color, context.theme))
}
然后简单地做
background.tint(context, R.color.colorPrimary)
您可能想尝试Mode.LIGHTEN
或Mode.DARKEN
. Android Javadocs 很难解释 PorterDuff 模式的作用。您可以在这里查看它们:PorterDuff | 安卓
我建议在这里查看 Mozilla 网站上的 Compositing 。(他们没有 android 的所有模式,但他们有很多)
使用这个:对于java
view.getBackground().setColorFilter(Color.parseColor("#343434"), PorterDuff.Mode.SRC_OVER)
对于科特林
view.background.setColorFilter(Color.parseColor("#343434"),PorterDuff.Mode.SRC_OVER)
如果您的背景有圆角等,您可以使用 PorterDuff.Mode.SRC_ATOP。
SDK >= 21 一行 myIconImageView.getDrawable().setTint(getResources().getColor(myColor))
您可以通过以下方式更改可绘制颜色:
background = view.findViewById(R.id.background)
val uDrawable = AppCompatResources.getDrawable(view.context, R.drawable.background)
uDrawable?.let {
val wDrawable = DrawableCompat.wrap(it)
DrawableCompat.setTint(wDrawable, ContextCompat.getColor(view.context,
color /*specify your int color code*/))
background.background = wDrawable
}
句法
"your image name".setColorFilter("your context".getResources().getColor("color name"));
例子
myImage.setColorFilter(mContext.getResources().getColor(R.color.deep_blue_new));
长话短说 :
public void changeDrawableColor(Drawable drawable,int color){
drawable.setColorFilter(color, PorterDuff.Mode.SRC_ATOP);
}
public Drawable getColoredDrawable(@DrawableRes int resid,int color){
Drawable drawable= ContextCompat.getDrawable(context, resid).mutate();
drawable.setColorFilter(color, PorterDuff.Mode.SRC_ATOP);
return drawable;
}
最简单的方法:
imageView.setColorFilter(Color.rgb(r, g b));
或者
imageView.setColorFilter(Color.argb(a, r, g, b));
a, r, g, b :颜色 argb 值。
像这样创建方法:
//CHANGE ICON COLOR
private void changeIconColor(Context context ,int drawable){
Drawable unwrappedDrawable = AppCompatResources.getDrawable(context, drawable);
assert unwrappedDrawable != null;
Drawable wrappedDrawable = DrawableCompat.wrap(unwrappedDrawable);
DrawableCompat.setTint(wrappedDrawable, getResources().getColor(R.color.colorAccent));
}
并像这样使用它:
changeIconColor(this,R.drawable.ic_home);
这就是我所做的:
public static Drawable changeDrawableColor(int drawableRes, int colorRes, Context context) {
//Convert drawable res to bitmap
final Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(), drawableRes);
final Bitmap resultBitmap = Bitmap.createBitmap(bitmap, 0, 0,
bitmap.getWidth() - 1, bitmap.getHeight() - 1);
final Paint p = new Paint();
final Canvas canvas = new Canvas(resultBitmap);
canvas.drawBitmap(resultBitmap, 0, 0, p);
//Create new drawable based on bitmap
final Drawable drawable = new BitmapDrawable(context.getResources(), resultBitmap);
drawable.setColorFilter(new
PorterDuffColorFilter(context.getResources().getColor(colorRes), PorterDuff.Mode.MULTIPLY));
return drawable;
}