从ListView项目中删除填充/边框/框架

时间:2015-04-11 21:07:14

标签: android

我的列表项之间有这些灰色分隔条,我似乎无法删除。我完成了标签猜测。

包含我的ListView的布局的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:id="@+id/what">

    <ListView
        android:id="@+id/listview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>

</LinearLayout>

enter image description here

1 个答案:

答案 0 :(得分:0)

您的ListView上可能android:dividerHeight="0px"android:divider="@android:color/transparent"

像:

<ListView
    android:id="@+id/listview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:dividerHeight="0px"
    android:divider="@android:color/transparent"/>