0

这段代码给了我一条虚线(--------------------),但我想要的是一条虚线(............ .............)。下面使用列表视图的代码给出了一条虚线作为行分隔符,但我想要一条虚线。有没有办法做到这一点。

dotted.xml

<?xml version="1.0" encoding="utf-8"?>

 <size
    android:height="4dp"
    android:width="700dp"/>

<stroke
   android:dashWidth="3px"
   android:color="@android:color/black"
   android:dashGap="3px"/>

4

1 回答 1

1

增加点大小的最简单方法是将笔画的宽度设置为与 dashWidth 相同。

<stroke
    android:width="4dp"
    android:dashWidth="4dp"
    android:dashGap="8dp"
/>
于 2013-08-21T07:22:06.753 回答