I'm currently looking for a way to use a black and white bitmap to mask the alpha channel of another bitmap or Drawable on Android. I'm curious as to what the best way to do this is. I certainly have a couple of ideas for how to do this, but they are not optimal.

I need to be able to apply a new mask to the image every so often (the black and white bitmap will change every few seconds).

Any feedback on how to achieve this would be greatly appreciated.

link|improve this question
I'm trying to use the black portions of the mask bitmap to set the alpha channel of the corresponding pixel on the other bitmap/Drawable to 0. – Joshua Rodgers Apr 12 '10 at 19:52
feedback

2 Answers

up vote 2 down vote accepted

Using the Xfermodes example in the API Demo I was able to use a PorterDuffXfermode applied to a Paint object to blend together two bitmaps on a canvas. This works exactly how I need it to.

link|improve this answer
3  
Could you add more details? – Casebash Apr 29 '10 at 2:25
feedback

I'm not entirely clear on what you're going for, but I believe that a combination of BitmapDrawable and LayerDrawable may work. BitmapDrawable will allow you to use your Bitmaps as Drawables, and then you can use LayerDrawable to layer the mask on top of another Drawable.

link|improve this answer
I'll check it out, thanks. – Joshua Rodgers Apr 12 '10 at 19:49
feedback

Your Answer

 
or
required, but never shown

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