I using listviews and expandedviews that has dividers and i can set them but on spinner its looks like it is no divider between items.

Someone that has a idea of how to fix this?

link|improve this question

71% accept rate
feedback

3 Answers

I managed to find a more proper solution for this issue (without including the divider in the single item layout).

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

A Spinner only has one item in the closed state, and hence there is no place for a divider.

The pop-up dialog that appears when the user clicks the drop-arrow has dividers between its entries.

Hence, there is nothing to fix.

link|improve this answer
I can not see any and thats maybe becouse i using a custom spinner design with a xml file with background. – RickardP Dec 31 '10 at 11:44
@RickardP: Well, I'm not aware that you can have "a xml file with background" for the pop-up list, so I have not seen the behavior you describe. Try examining a regular Spinner first. – CommonsWare Dec 31 '10 at 11:47
feedback
up vote 0 down vote accepted

For people with same problem i after almost gived up i got an idea of how to get the divider.

I added the divider line at the bottom of my custom layout for each item

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout android:id="@+id/RelativeLayout01"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android" style="@style/ListItem2">

    <TextView android:id="@+id/Text" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:layout_alignParentLeft="true"
        style="@style/SpinnerView_Text" android:paddingLeft="10dip" />

    <ImageView android:id="@+id/icon" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:src="@drawable/arrowright"
        android:layout_alignParentRight="true" android:layout_centerInParent="true"
        android:layout_marginRight="20dip" />

</RelativeLayout>

<ImageView android:id="@+id/Divider1" android:layout_width="fill_parent"
    android:layout_height="1dip" style="@style/Divider"></ImageView>

link|improve this answer
can you post more xml? for example the outermost layout and style/Divider.thank you – pengwang Jan 6 '11 at 13:36
feedback

Your Answer

 
or
required, but never shown

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