I don't know what I did but for a period of time my TabWidget had white colored tabs which looked really nice. I never set a theme or background/foreground color in my project at all. The next time I compiled it it reverted back to the gray tabs. My application is using the default dark theme. Even if I set the application theme to light, the tabs are still gray. So obviously it was something else that changed the tabs' color. Anyone know how to do this?
|
feedback
|
|
I was having a problem due to a bug in Android 1.6's light theme (tab indicator text is white). I was able to override the default theme as follows:
Then I just apply that theme to my application by adding | ||||
|
feedback
|
|
Check this answer of mine: Background in tab widget ignore scaling You can also refer to the In your code, you can set the background for your tabs like this:
| ||||
|
feedback
|
|
in the
than in the listener: public void onTabChanged(String tabId) { setTabColor(); finally the function, which set the foreground and the background too:
| |||
|
feedback
|
DDMS, it would very much help. – Roman Nurik Mar 30 '10 at 7:55targetSdkVersionattribute in the AndroidManifest.xml was causing it to change for me. – Steve Pomeroy Jul 2 '10 at 14:05