I have this code:

<ListView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:id="@+id/cashItemsList"
     android:cacheColorHint="#00000000"
     android:divider="@drawable/list_divider"></ListView>

where @drawable/list_divide is:

<shape
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:shape="line">
 <stroke
   android:width="1dp"
   android:color="#8F8F8F"
   android:dashWidth="1dp"
   android:dashGap="1dp" />
</shape>

but I don't see any divider.

help?

link|improve this question

37% accept rate
I don't know why but the code is missing. here it is again: – oriharel Oct 20 '10 at 14:57
<ListView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/cashItemsList" android:cacheColorHint="#00000000" android:divider="@drawable/list_divider"></ListView> – oriharel Oct 20 '10 at 14:57
and the list divider is: <shape xmlns:android="schemas.android.com/apk/res/android"; android:shape="line"> <stroke android:width="1dp" android:color="#8F8F8F" android:dashWidth="1dp" android:dashGap="1dp" /> </shape> – oriharel Oct 20 '10 at 14:58
use the code block (the 101010 icon) for inserting codes, especially XML/HTML/SGML code. I've fixed your post for now. – Lie Ryan Oct 20 '10 at 14:59
feedback

6 Answers

This is a workaround, but works for me:

Created res/drawable/divider.xml as follows:

<?xml version="1.0" encoding="UTF-8"?>
<shape
  xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient android:startColor="#ffcdcdcd" android:endColor="#ffcdcdcd" android:angle="270.0" />
</shape>

And in styles.xml for listview item, I added the following lines:

    <item name="android:divider">@drawable/divider</item>
    <item name="android:dividerHeight">1px</item>

Crucial part was to include this 1px setting. Of course, drawable uses gradient (with 1px) and that's not the optimal solution. I tried using stroke but didn't get it to work. (You don't seem to use styles, so just add android:dividerHeight="1px" attribute for the ListView.

link|improve this answer
4  
Or use 1dp for best practice. – TreeUK Jun 28 '11 at 19:58
2  
Why are you using an angle of 270? List dividers are horizontal lines. 270 is a vertical gradient. – Christopher Perry Sep 7 '11 at 1:14
feedback

Add android:dividerHeight="1px" and it will work:

<ListView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:id="@+id/cashItemsList"
     android:cacheColorHint="#00000000"
     android:divider="@drawable/list_divider" android:dividerHeight="1px"></ListView>
link|improve this answer
feedback

From the doc:

public void setDivider(Drawable divider) on ListView

/**
 * Sets the drawable that will be drawn between each item in the list. If the drawable does
 * not have an intrinsic height, you should also call {@link #setDividerHeight(int)}
 *
 * @param divider The drawable to use.
 */

Looks like setDividerHeight MUST be called in order for the divider to show up if it has no intrinsic height

link|improve this answer
feedback

Your @drawable/list_divide should look like this:

<shape
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:shape="line">
 <stroke
   android:height="1dp"
   android:color="#8F8F8F"
   android:dashWidth="1dp"
   android:dashGap="1dp" />
</shape>

In your version you provide an android:width of 1dp ;-) Simply change it to an android:height of 1dp and it should work!

link|improve this answer
feedback

From the doc:

file location:

res/drawable/filename.xml

The filename is used as the resource ID.

basically, you'll need to put a file named list_divider.xml in res/drawable/ so you can access it as R.drawable.list_divider; if you can access it that way, then you can use android:divider="@drawable/list_divider" in the XML for ListView.

link|improve this answer
I work with eclipse, so if I hadn't done that, the code wouldn't compile. so, with the file in place, still seems that the list view ignores my custom divider. – oriharel Oct 21 '10 at 8:06
feedback

The android docs warn about things dissappearing due to round-off error... Perhaps try dp or sp instead of px, and perhaps also try > 1 first to see if it is the round-off problem.

see http://developer.android.com/guide/practices/screens_support.html#testing

for the section "Images with 1 pixel height/width"

link|improve this answer
Using dp instead of px would cause a round off error. – Christopher Perry Sep 7 '11 at 1:12
feedback

Your Answer

 
or
required, but never shown

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