문제

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