How can i set the opacity of a Drawable object?
Drawable
You can use Drawable's setAlpha() method. It takes an int from 0 to 255, 0 being fully transparent, and 255 being fully opaque.
setAlpha()
See the developer reference here.