0

I have tried both

android:tabStripEnabled="false"

and

tabHost.getTabWidget().setStripEnabled(false);

for removing the blue line from tab widget that appears bottom of tabwidget but no luck

is there something that I am missing

  • Hope This Helps : http://stackoverflow.com/questions/8647836/how-to-change-the-colour-of-actionbar-navigation-tabs/8647970#8647970 – Arash GM Feb 25 '13 at 09:44

1 Answers1

-1

Apply the theme on your activity in AndroidManifest.xml:

<application android:theme="@style/YourTheme">

and in style.xml the theme may be like this:

 <style name="YourTheme">  
       <item name="android:textColor">#5DFC98</item>
 </style>
Avadhani Y
  • 7,566
  • 19
  • 63
  • 90