views:

13

answers:

1

How can i set the opacity of a Drawable object?

+1  A: 

You can use Drawable's setAlpha() method. It takes an int from 0 to 255, 0 being fully transparent, and 255 being fully opaque.

See the developer reference here.

kcoppock