how to change the color of the tabs indicator text in android?
how to change the color of the text indicator of tab? i can change the icon using selector tag refered the example . but cant to the text color. how? Alex Volovoy Style it in your custom theme change <item name="android:tabWidgetStyle">@android:style/Widget.TabWidget</item> and <style name="Widget.TabWidget"> <item name="android:textAppearance">@style/TextAppearance.Widget.TabWidget</item> <item name="android:ellipsize">marquee</item> <item name="android:singleLine">true</item> </style> <style name="TextAppearance.Widget.TabWidget"> <item name="android:textSize">14sp</item> <item name="android