android – 为什么可绘制的滤色镜适用于所有地方?

在我的应用程序的一部分,我需要我的drawable 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在应用程序的这一部分是白色的,但它在我使用它的每个地方,而不是.

我该如何解决

解决方法

请改用此方法,以确保您使用的是drawable的副本

public final static Drawable  getFilteredDrawable(Context context,drawable).getConstantState().newDrawable().mutate(); //so we are sure we are using a copy of the original drawable
    d.setColorFilter(ContextCompat.getColor(context,PorterDuff.Mode.SRC_IN);
    return d;
}

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...