删除列表中的行
如何删除列表中分隔行的行?请参阅此图片:
<?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>
how do I delete the lines that separate rows in the list? See this image:
<?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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
摘自这个答案:
将
ListView
的分隔线设置为:android:divider ="@null"
使其不可见。
Taken from this answer:
Set the divider of your
ListView
to:android:divider="@null"
to make it invisible.