5

There are some horizontal black lines between my list items.How can i erase them? There are not part of my graphics.Thanks

menu_on_top
  • 2,583
  • 14
  • 43
  • 70

2 Answers2

6
    listview.setDivider(null);
    listview.setDividerHeight(0);

or in XML

   <ListView
    android:divider="@null"
    android:dividerHeight="0dp" />
Samir Mangroliya
  • 39,219
  • 16
  • 116
  • 133
0

Use property dividerHeight. Just set it to 0dp.

Jin35
  • 8,582
  • 3
  • 31
  • 52