Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why drawable color filter is applied in all places?

In a section of my app I need my drawable R.drawable.blah to be filtered to white color (originally is red), so I have this method:

public final static Drawable getFilteredDrawable(Context context, @DrawableRes int drawable, @ColorRes int color) {
    Drawable d = ContextCompat.getDrawable(context, drawable);
    d.setColorFilter(ContextCompat.getColor(context, color), PorterDuff.Mode.SRC_IN);
    return d;
}

and I use it this way:

DrawableUtil.getFilteredDrawable(this, R.drawable.blah, android.R.color.white);

Problem is that now the drawable becomes white in the whole app, even not applying the filter. I want the drawable to be white just in this section of the app, but it is in each place I use it, instead.

How can I solve it?

like image 494
Héctor Avatar asked Aug 05 '16 09:08

Héctor


1 Answers

use this method instead, to be sure you're using a copy of your drawable

public final static Drawable  getFilteredDrawable(Context context, @DrawableRes int drawable, @ColorRes int color) {
    Drawable d = ContextCompat.getDrawable(context, drawable).getConstantState().newDrawable().mutate(); //so we are sure we are using a copy of the original drawable
    d.setColorFilter(ContextCompat.getColor(context, color), PorterDuff.Mode.SRC_IN);
    return d;
}
like image 96
ddb Avatar answered Sep 16 '22 21:09

ddb