在我的应用的一部分中,我需要将我的可绘制R.drawable.blah
过滤为白色(原来是红色),所以我有这个方法:
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;
}
我用这种方式:
DrawableUtil.getFilteredDrawable(this, R.drawable.blah, android.R.color.white);
问题是现在整个应用程序中的drawable变为白色,甚至没有应用过滤器。我希望drawable在应用程序的这一部分中是白色的,但它在我使用它的每个地方都是。
我该如何解决?
答案 0 :(得分:7)
请改用此方法,以确保您使用的是可绘制的副本
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;
}