美文网首页
Android shape图形

Android shape图形

作者: EvanPoison | 来源:发表于2017-05-27 16:30 被阅读51次
    1. 画一条虚线
    <?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表示之间隔开的距离
    

    相关文章

      网友评论

          本文标题:Android shape图形

          本文链接:https://www.haomeiwen.com/subject/jkgaxxtx.html