My spinner is defined like this and it seems android:divider="#66BC31" has no effect, i still get white divider:

<Spinner
    android:id="@+id/spinner"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_marginTop="15dip"
    android:layout_marginBottom="15dip"
    android:layout_marginLeft="10dip"
    android:layout_marginRight="10dip"
    android:textColor="#ffffff"
    android:divider="#66BC31"
    android:background="@drawable/spina" />

This is my code where i change my spinner font and select resource for dropdown:

ArrayAdapter<String> adapter = new ArrayAdapter<String>(Roaming.this,
            R.layout.roaming_spinner, data) {

        public View getView(int position, View convertView, ViewGroup parent) { 
            View v = super.getView(position, convertView, parent);

            Typeface externalFont = Typeface.createFromAsset(getAssets(),
                    "fonts/HelveticaNeueLTCom-Lt.ttf");
            ((TextView) v).setTypeface(externalFont);

            return v;
        }

        public View getDropDownView(int position, View convertView,
                ViewGroup parent) { // we need this so we can use custom
                                    // font for spinner (open)
            View v = super.getDropDownView(position, convertView, parent);

            Typeface externalFont = Typeface.createFromAsset(getAssets(),
                    "fonts/HelveticaNeueLTCom-Lt.ttf");
            ((TextView) v).setTypeface(externalFont);


            return v;
        }
    };
    adapter.setDropDownViewResource(R.layout.roaming_spinner_row);

I also tried adding line android:divider="#66BC31" to roaming_spinner_row.xml and roaming_spinner.xml where text size and color for my closed and opened spinner are declared and again with no success.

link|improve this question

feedback

4 Answers

I finally found the answer, thanks to this link and some more research.

What you have to do is define in your activity's theme

        <item name="android:dropDownListViewStyle">@style/App.Style.Spinner</item>

and then create the proper style with

   <style name="App.Style.Spinner" parent="@style/Widget.Sherlock.Light.ListView.DropDown">
           <item name="android:dividerHeight">10dip</item>
           <item name="android:divider">@drawable/mydivider</item>
   </style>
link|improve this answer
feedback

In the Spinner's documentation there is no reference to android:divider.

link|improve this answer
Any other way to change color of spinner divider or to remove it? – DixieFlatline Apr 3 '11 at 15:12
I have little experience on Android, so I don't know another way =(. – dusan Apr 3 '11 at 22:51
feedback

Try this implementation:

How to color and alignment spinner item on android?

link|improve this answer
I am using separate xml file tor styling text in inside spinner like in implementation you posted, but i have to change the color of dividers (separators) between spinner items. – DixieFlatline Apr 3 '11 at 16:07
feedback

I guess it does work as a ListView.

Try this out:

<Spinner 
    android:id="@+id/spinner"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:drawSelectorOnTop="true"
    android:prompt="@string/your_prompt"
    android:headerDividersEnabled="false"
    android:footerDividersEnabled="true"
    android:divider="@drawable/list_divider"
/>

and your list_divider is:

<?xml version="1.0" encoding="utf-8"?>
<layer-list
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape>
            <gradient
                android:startColor="#000000"
                android:centerColor="#CCCCCC"
                android:endColor="#FFFFFF"
                android:height="1px"
                android:angle="0" />
        </shape>
    </item>
</layer-list>

PS: Also take a look at this tutorial. Seems that it has a lot of info about custom Spinners.

link|improve this answer
Sorry but i cant get this working. – DixieFlatline Apr 10 '11 at 8:22
feedback

Your Answer

 
or
required, but never shown

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