Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to use a TextView to define the style of a TabWidget on a tabhost.

I just created a selector for bgcolor and works fine, but i want to make a selector for textColor but the text color don't change:

This is my tab_text_selector.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="@android:color/white" />
    <item android:state_focused="true" android:color="@android:color/white" />
    <item android:state_pressed="true" android:color="@android:color/white" />

</selector>

And this is the code when i'm trying to use on a textView:

TextView txtTab=new TextView(this);
        txtTab.setTextColor(R.drawable.tab_text_selector);
        txtTab.setBackgroundResource(R.drawable.tab_bg_selector);
        txtTab.setGravity(Gravity.CENTER);
        txtTab.setText("Agregar Idea");

I know the text color must be white in any case but it doesn't.

share|improve this question

5 Answers

use this way :

tab_text_selector.xml:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_pressed="true" android:color="#FF111111"/>  
<item android:state_focused="true" android:color="#FF222222"/>    
<item android:state_selected="true" android:color="#FF333333"/> 
</selector>

textView:

   TextView txtTab=new TextView(this);

    XmlResourceParser xrp = getResources().getXml(R.drawable.tab_text_selector);  
    try {  
        ColorStateList csl = ColorStateList.createFromXml(getResources(), xrp);  
        txtTab.setTextColor(csl);  
    } catch (Exception e) {  
    } 
        txtTab.setBackgroundResource(R.drawable.tab_bg_selector);
        txtTab.setGravity(Gravity.CENTER);
        txtTab.setText("Agregar Idea");

but it's better to put color in /res/color/yourcolor.xml

share|improve this answer
hmmm didn't work :( Still getting gray text – rafuru Apr 2 '12 at 19:47
Oh at least it worked :D !! This is a "good practice" ? – rafuru Apr 2 '12 at 19:55
Thank you for this... good little snippet. – Phix Dec 9 '12 at 7:00
You have used the white color in all cases focus , selected and pressed..

Please use and test with different color.

Also must use a default case with certain color say black along with the all case.. when no state is used default will be applied.

share|improve this answer
thanks ! i just used diferent colors and didn't work :( – rafuru Apr 2 '12 at 19:48
    <item android:state_selected="true" android:color="@android:color/white" />
    <item android:state_focused="true" android:color="@android:color/red" />
    <item android:state_pressed="true" android:color="@android:color/blue" />
share|improve this answer

1) Use tab_text_selector.xml as below and put it into res/color folder:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_selected="true" android:color="@android:color/white" />
    <item android:state_focused="true" android:color="@android:color/white" />
    <item android:state_pressed="true" android:color="@android:color/white" />
    <item android:color="#504f4f" /> <--default case
</selector>

And set it to your textview as below..

TextView tv = (TextView) findViewById(R.id.TextView1) ;
tv.setTextColor(context.getResources().getColor(R.color.tab_text_selector));

2) The Second option is If you are using textview in xml rather than using programatically then use tab_text_selector.xml as below :

<TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal"
            android:text="TextView"
            android:textColor="@color/color_tab_text" />
share|improve this answer
android:textColor="@drawable/tab_text_selector" to be exact – BAZTED May 13 at 14:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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