android中的虚线

时间:2016-02-26 07:41:23

标签: android android-layout android-view android-xml

我正在研究android应用程序,我想在我的布局中使用虚线xml作为分隔符。为此,我使用了不同的drawables,而是制作一个虚线虚线,它正在制作一条线。我的图片如下:

enter image description here

1 个答案:

答案 0 :(得分:3)

在ListView中

android:divider="@drawable/dash"

在drawable文件夹中创建dash.xml并输入以下代码

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="line">
    <stroke
        android:color="#fdfdfd"
        android:width="1dp"
        android:dashGap="3dp"
        android:dashWidth="1dp"
        />
    <size
        android:height="3dp"
        />
</shape>

您还可以更改点的颜色