Frage

I would like to change the background of the tabwidget in shown in the next image:

enter image description here

I would like to use a different background color, and change the font color to the selected tab. How can I do that?

War es hilfreich?

Lösung

To do this i used drawables for tab widgets instead of fixed images. my code is

tab1.setImageDrawable(getResources().getDrawable(R.drawable.tab_drawable));

in the tab_drawable is a simple selector defining the behavior of the drawable for different state. you can try that it is very useful.

Andere Tipps

you can google for the tables available for different colors this is a chart or table available with color and the code to get that color

just choose which ever you like

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top