views:

407

answers:

1
+1  Q: 

Android tabwidget

I am using tabwidget when i apply white theme on tab widget selected tab text remain black but unselected tab text turn into white and invisible, how can i change the color of tab widget indicator text. alt text

+1  A: 

fixed the issue using the following code

tabHost.getTabWidget().setBackgroundColor(Color.BLACK);
Faisal khan