I'm trying to change the text color of the single item that is displayed in the spinner button after you select an item from the dropdown. I've been perusing the themes.xml and styles.xml in the Android SDK for an hour now, and I can't seem to find where the Spinner is getting the color value from.

To clarify, I'm NOT trying to change the color of a dropdown item, I'm trying to change the color of the spinner's displayed text when there is no dropdown. I guess you could call it the spinner's 'button' text.

link|improve this question

there is a color and background for the text in a spinner. you can set it in SpinnerAdapter.getView(). – Ray Tayek Mar 3 at 0:47
feedback

4 Answers

up vote 14 down vote accepted

I think it's probably this bit in styles.xml

<style name="Widget.TextView.SpinnerItem">
    <item name="android:textAppearance">@style/TextAppearance.Widget.TextView.SpinnerItem</item>
</style>
<style name="Widget.DropDownItem.Spinner">
    <item name="android:checkMark">?android:attr/listChoiceIndicatorSingle</item>
</style>

-= EDIT =- Here's the result: enter image description here

and here's how it's done:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="MooTheme" parent="android:Theme">
        <item name="android:spinnerItemStyle">@style/MooSpinnerItem</item>
    </style>

    <style name="MooSpinnerItem" parent="android:Widget.TextView.SpinnerItem">
        <item name="android:textAppearance">@style/MooTextAppearanceSpinnerItem</item>
    </style>

    <style name="MooTextAppearanceSpinnerItem" parent="android:TextAppearance.Widget.TextView.SpinnerItem">
        <item name="android:textColor">#F00</item>
    </style>
</resources>

Then just add this to the application tag in your AndroidManifest.xml

android:theme="@style/MooTheme"
link|improve this answer
That's for the spinner items that go in the dropdown. I need it for the text in the actual spinner. – Christopher Perry May 28 '11 at 2:06
That is the actual spinner. I am editing my answer with the full implementation. – CaseyB May 28 '11 at 2:23
I don't understand, because this says it's for the spinner items. How does it apply this to the spinner? I see that it actually does work, so I'm going to mark yours as the answer, but I'm really curious how this is actually working because I was looking in the Spinner code to see where the text is being displayed and was at a loss to find it. – Christopher Perry May 28 '11 at 2:30
can you tell me how to do custom triangle on the right of the spnner? – pengwang May 30 '11 at 5:57
For CaseyB: Can u please be more specific on instructions? Firstly, if i insert the first two style tags in my style.xml file, it asks me for the parent.. Secondly, adding the three style tags given below the above screenshot and then adding adndroid:theme="@style/MooTheme" has no effect WHATSOEVER on my spinner... Thirdly, you haven't mentioned what kind of adapter i must have for my spinner... – Siddhant Dec 8 '11 at 7:11
show 1 more comment
feedback

Yeah CaseyB is correct.

Here's how I set the spinner text color, a little simple example:

styles.xml

    <style name="Theme.NoTitleBar.WithColoredSpinners" parent="@android:style/Theme.NoTitleBar">
        <item name="android:spinnerItemStyle">@style/SpinnerItem</item>
        <item name="android:spinnerDropDownItemStyle">@style/SpinnerItem.DropDownItem</item>
    </style>

    <style name="SpinnerItem" parent="@android:style/Widget.TextView.SpinnerItem">
        <item name="android:textColor">#00FF00</item>
    </style>

    <style name="SpinnerItem.DropDownItem" parent="@android:style/Widget.DropDownItem.Spinner">
        <item name="android:textColor">#FF0000</item>
    </style>

</resources>

Then in your manifest:

<application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/Theme.NoTitleBar.WithColoredSpinners" >

The text on the outside of all your spinners will now be Green and the text on the dropdowns will be red.

link|improve this answer
Thamk's dude....it's perfact working for me........ – Kalpesh Apr 19 at 5:52
feedback

I dont think there is a color associated with the text. Its most likely predefined in the android code, might have to just make your own if you want to change the spinner's color.

This would include changing the ondraw() method and you draw the spinner how you would like it to look.

Only thing I think could potentially solve this issue is the style property of the spinner.

Source: http://developer.android.com/reference/android/widget/Spinner.html

This might help:

http://www.designerandroid.com/?p=28

link|improve this answer
Well, the reason I think it's in a style somewhere is because when I change from the Holo to the Holo.Light theme, the text color on the spinners change from white to black. – Christopher Perry May 28 '11 at 1:36
Well you could define your own style and then apply it to the spinner, right? – JoxTraex May 28 '11 at 1:38
I could, but I have no clue what attribute to override for the text color, hence my question. – Christopher Perry May 28 '11 at 1:49
feedback

You can use setOnItemSelectedListener on Spinner object,

spinnerObject.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parentView, View selectedItemView, int position, long id) {
    ((TextView)parentView.getChildAt(0)).setTextColor(Color.rgb(249, 249, 249));
    // OR ((TextView)parentView.getChildAt(0)).setTextColor(Color.RED);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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