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,613
  • 14
  • 44
  • 71

2 Answers2

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

or in XML

   <ListView
    android:divider="@null"
    android:dividerHeight="0dp" />
Samir Mangroliya
  • 39,918
  • 16
  • 117
  • 134
0

Use property dividerHeight. Just set it to 0dp.

Jin35
  • 8,602
  • 3
  • 32
  • 52