- 画一条虚线
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke
android:width="1dp" //边的宽度
android:color="#4cffffff" //边的颜色
android:dashGap="5dp" //虚线间隔宽度
android:dashWidth="5dp" />//虚线的宽度
</shape>
作为背景资源添加到控件中,还需要设置这样一句话:`Android:layerType=”software”`
stroke:描边
android:width="2dp" 描边的宽度,android:color 描边的颜色。
我们还可以把描边弄成虚线的形式,设置方式为:
android:dashWidth="5dp"
android:dashGap="3dp"
其中android:dashWidth表示'-'这样一个横线的宽度,android:dashGap表示之间隔开的距离
网友评论