删除列表中的行

发布于 2024-12-18 18:14:21 字数 1335 浏览 0 评论 0原文

如何删除列表中分隔行的行?请参阅此图片:

在此处输入图片描述

<?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:

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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔女人霸气范 2024-12-25 18:14:21

摘自这个答案

ListView的分隔线设置为:android:divider ="@null"

使其不可见。

Taken from this answer:

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

to make it invisible.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文