Remove ListView separator(in the xml layout file) [duplicate] Remove ListView separator(in the xml layout file) [duplicate] android android

Remove ListView separator(in the xml layout file) [duplicate]


Set the dividerHeight to zero and divider to null like this in xml:

android:dividerHeight="0dp"android:divider="@null"

Or in java:

getListView().setDividerHeight(0);getListView().setDivider(null);


Simply put:

android:divider="@null"


put below property in listview tag (in xml file)

android:divider="@null"