Why drawable color filter is applied in all places?

你说的曾经没有我的故事 提交于 2019-12-22 08:09:43

问题


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?


回答1:


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;
}


来源:https://stackoverflow.com/questions/38785851/why-drawable-color-filter-is-applied-in-all-places

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!