I'm trying to make a spinner totally transparent. In Android 4.0 I can do this setting the alpha property to 0 in the xml layout designer. But when I work with Android 2.2 i can't use that property, Eclipse mark it as an error and tell me that i can't use it.
I tried to make it transparent writting this java code:
final Spinner cmbCategorias = (Spinner) findViewById(R.id.cmbCategorias);
cmbCategorias.getBackground().setAlpha(0);
and it works, but the text in the spinner keeps visible.
Someone can tell me what can i do?? Thanks
I did a function like this:
It works for spinners too.
Make xml Layout like spinner_textview.xml
And add the following in Java Code: