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
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
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>