setColorFilter不工作 [英] setColorFilter not working

查看:1526
本文介绍了setColorFilter不工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想实现在一个ImageView的一个简单的colorfilter打开黑色图像变成一个白色的图像。为了做到这一点我做到以下几点:

I'm trying to implement a simple colorfilter on an imageview to turn the black image into a white image. In order to achieve that I do the following:

    weatherImg.setColorFilter(Color.BLACK, PorterDuff.Mode.MULTIPLY);
    weatherImg.setImageResource(R.drawable.b_clouded_rain);

我也试图改变颜色的彩色滤光片,以红色和白色的,但他们都没有任何效果,我究竟做错了什么?

I've also tried to change to color in the color filter to red and white but all of them have no effect, what am I doing wrong?

推荐答案

就像我讨厌回答我的问题,我发现这个问题: 我已经使用:

As much as I hate to answer my own questions I found the problem: I should've used:

   weatherImg.setColorFilter(Color.WHITE, PorterDuff.Mode.SRC_ATOP);

这篇关于setColorFilter不工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆