答案 0 :(得分:1)
创建一个可绘制的新形状以用于背景并设置笔划android:dashGap
和android:dashWidth
。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke
android:width="2dp"
android:color="#666666"
android:dashGap="2dp"
android:dashWidth="8dp" />
<padding
android:bottom="8dp"
android:left="8dp"
android:right="8dp"
android:top="8dp" />
</shape>
注意:在
res/drawable
文件夹中创建可绘制的xml文件
如果你想要圆角添加:
<corners android:radius="8dp"/>