I need to set transparent background for my button, but only background, not all button. I've tried:
android:background=""
android:background="null"
and background changed on transparent, but i've got an error:
Error: String types not allowed (at 'background' with value '').
android:background="#AARRGGBB"
where AA is your alpha channel. Set this to00
to be transparent. – Nardoo