我有一个黑色&白色九色可绘制作为视图的背景,我想在其上应用一种颜色,就像一个半透明的覆盖图,使图形可见,但在其上应用所需的颜色。
我认为drawable.setColorFilter(color,mode)
可能会做到这一点,但我无法弄清楚不同模式的含义。
有人能给我一个提示吗?
答案 0 :(得分:9)
我相信这个问题可以帮到你:
Understanding the Use of ColorMatrix and ColorMatrixColorFilter to Modify a Drawable's Hue
那就是说,我建议您使用PorterDuff.Mode.MULTIPLY
来满足您的需求。