分隔符不适用于Android Studio中的ListView

时间:2016-11-29 11:27:51

标签: android listview android-studio

我正在尝试在ListView中为列表项添加间距。我尝试过使用divider和dividerHeight,但这似乎不起作用。请问有什么不对?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_export_logistics"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.orume.export.ExportLogisticsActivity">


<include layout="@layout/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"></include>


<ListView
    android:id="@+id/ListView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:divider="@null"
    android:dividerHeight="16dp"
    android:layout_marginTop="65dp"
    android:background="#fff"></ListView>
</RelativeLayout>

divider.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line" >

<stroke
    android:width="20dp"
    android:color="#dd0d0d" />

</shape>

4 个答案:

答案 0 :(得分:1)

您不能将分隔线设置为ListView android:divider="@null" @null这里表示您将分隔符设置为空。现在你有一个可绘制的divider.xml,你需要告诉Android你希望它被用作分隔符。

如果您的divider.xml位于drawable目录下,请使用android:divider="@drawable/divider"

答案 1 :(得分:0)

确定。找到了出路。我最终将android:layout_marginBottom添加到定义我的ListView的texView,它完美地工作。感谢。

答案 2 :(得分:-1)

为列表项创建自定义视图,并在该自定义项布局中提供顶部和底部填充或其他空间调整,以便为列表项提供空间。下面是一个例如链接 Android custom Row Item for ListView

另外另一个注意事项是分频器高度可能无法正常工作。

答案 3 :(得分:-2)

<ListView
    android:id="@+id/ListView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:divider="@android:color/transparent"
    android:dividerHeight="16dp"
    android:layout_marginTop="65dp"
    android:background="#fff"></ListView>

将此列表视图替换为您的..