这段代码给了我一个虚线(--------------------),但我想要的是一条虚线(......... ................)。 下面的代码使用列表视图给出一个虚线作为行分隔符,但我想要一个虚线。 有没有办法实现这一目标。
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"/>
答案 0 :(得分:1)
增加点大小的最简单方法是将笔画宽度设置为与dashWidth相同。
<stroke
android:width="4dp"
android:dashWidth="4dp"
android:dashGap="8dp"
/>