Possible Duplicate:
Android: Change Tab Text Color Programmatically

How can we change the text color in android tab.

link|improve this question

79% accept rate
The text color of what? You can use android:textColor on a TextView to set the color of text. A Tab must contain other views. – Robby Pond Mar 1 '11 at 13:57
feedback

closed as exact duplicate by Bill the Lizard Sep 26 '11 at 13:13

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 8 down vote accepted

You can use following code

    TabHost tabHost = getTabHost();
for(int i=0;i<tabhost.getTabWidget().getChildCount();i++) 
        { 
            TextView tv = (TextView) tabhost.getTabWidget().getChildAt(i).findViewById(android.R.id.title); //Unselected Tabs
            tv.setTextColor(Color.parseColor("#ffffff"));
        } 
        TextView tv = (TextView) tabhost.getCurrentTabView().findViewById(android.R.id.title); //for Selected Tab
        tv.setTextColor(Color.parseColor("#000000"))
link|improve this answer
feedback

I use the ColorStateList, find it more elegant. Here is an example :

tab_text.xml :

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_selected="true" android:color="@color/tab_active" />
    <item android:state_selected="false" android:color="@color/tab_inactive" />
</selector>

In your TextView, just set the textColor to point to this file with :

android:textColor="@color/tab_text"
link|improve this answer
This solution is much cleaner than the other posted solution – DeathMagus Oct 6 '11 at 15:14
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.