0

set color display in image help me

How to set indicator color in tabhost

2 Answers2

0

In AndroidManifest.xml:

  <activity android:name=".ActivityName" android:theme="@style/tabTheme"/> 

In values/styles.xml:

  <style name="tabTheme" parent="android:style/Theme"> 
  <item name="android:tabWidgetStyle">@style/Widget.TabWidget</item>
   </style> 
  <style name="Widget.TabWidget" parent="android:Theme"> 
  <item name="android:tabStripEnabled">false</item>

or

tabWidget in your xml file. add following code

android:tabStripEnabled="false"
sasikumar
  • 12,540
  • 3
  • 28
  • 48
0

you can change programmatically like this way

tabLayout.setSelectedTabIndicatorColor(Color.parseColor("YOUR COLOR CODE"));
Aditya Vyas-Lakhan
  • 13,409
  • 16
  • 61
  • 96