I'm dealing with bugs in the Facebook SDK and so to remove the bugs I'll need to set a drawable to nothing not NULL just nothing or empty space or something. How can I do that programmatically?
Drawable=...
You can use a transparent ColorDrawable
:
Drawable transparentDrawable = new ColorDrawable(Color.TRANSPARENT);
That's a Drawable
that represents the transparent color and doesn't have an intrinsic size.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With