当前位置:  开发笔记 > Android > 正文

为什么可以在所有地方使用可绘制的滤色镜?

如何解决《为什么可以在所有地方使用可绘制的滤色镜?》经验,为你挑选了1个好方法。

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

我该如何解决?



1> ddb..:

请改用此方法,以确保您使用的是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;
}

推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有