Вопрос

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?

Это было полезно?

Решение

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.

Другие советы

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

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top