I have a black & white ninepatch drawable as the background of a view and I would like to apply a color on it, like a semi-transparent overlay that leaves the background drawing visible but applies the desired color on it.

I thought drawable.setColorFilter(color,mode) might do the trick, but I can't figure out what the different modes mean.

Could anyone give me a hint ?

Thanks.

link|improve this question

57% accept rate
feedback

1 Answer

up vote 3 down vote accepted

I believe this question may help you:

Understanding the Use of ColorMatrix and ColorMatrixColorFilter to Modify a Drawable's Hue

That said, I would suggest using PorterDuff.Mode.MULTIPLYfor what you're needing.

link|improve this answer
PorterDuff.Mode.MULTIPLY does exactly what I need. Thank you! – fiddler Nov 15 '11 at 16:36
You're welcome! :) If you've used Photoshop blending modes (GIMP probably has something similar) there's a lot of overlap, and they work more or less the same way. – kcoppock Nov 15 '11 at 16:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.