how do I delete the lines that separate rows in the list? See this image:

enter image description here

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="60dip"
    android:padding="5dip">

    <TextView
        android:text="Cognome"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="#6b71f1"
        android:id="@+id/personSurname"
        android:layout_alignLeft="@+id/personName"
        android:layout_below="@id/personName"
        android:layout_alignParentBottom="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
    </TextView>
    <TextView android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/personName" android:layout_width="wrap_content" android:text="Nome" android:layout_alignTop="@+id/personImage" android:layout_alignParentLeft="true"></TextView>
    <ImageView android:layout_height="50dip" android:layout_width="50dip" android:id="@+id/personImage" android:layout_centerVertical="true" android:layout_alignParentRight="true"></ImageView>
</RelativeLayout>
link|improve this question

62% accept rate
Your XML doesn't match your image. – kcoppock Nov 28 '11 at 15:08
feedback

1 Answer

up vote 2 down vote accepted

Taken from this answer:

Set the divider of your ListView to: android:divider="@null"

to make it invisible.

link|improve this answer
excellent :D... thank you! :) – user1023571 Nov 28 '11 at 15:17
feedback

Your Answer

 
or
required, but never shown

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