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

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

概述在我的应用程序的一部分,我需要我的drawableR.drawable.blah被过滤为白色(原来是红色),所以我有这个方法:publicfinalstaticDrawablegetFilteredDrawable(Contextcontext,@DrawableResintdrawable,@ColorResintcolor){Drawabled=ContextCompat.getDrawable(c

在我的应用程序的一部分,我需要我的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, @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;}
总结

以上是内存溢出为你收集整理的android – 为什么可绘制滤色镜适用于所有地方?全部内容,希望文章能够帮你解决android – 为什么可绘制的滤色镜适用于所有地方?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1113635.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存