Android-Xml绘图shape

                                                shape

一般用shape定义的xml文件存放在drawable目录下,若项目没有该目录则新建一个,而不要将它放到drawable-hdpi等目录中

使用shape可以自定义形状,可以定义下面四种类型的形状,通过android:shape属性指定:

  • rectangle: 矩形,默认的形状,可以画出直角矩形、圆角矩形、弧形等
  • oval: 椭圆形,用得比较多的是画正圆
  • line: 线形,可以画实线和虚线
  • ring: 环形,可以画环形进度条

  1. rectangle

solid: 设置形状填充的颜色,只有android:color一个属性

        android:color 填充的颜色
padding: 设置内容与形状边界的内间距,可分别设置左右上下的距离

扫描二维码关注公众号,回复: 1812240 查看本文章

        android:left 左内间距
        android:right 右内间距
        android:top 上内间距
        android:bottom 下内间距

gradient: 设置形状的渐变颜色,可以是线性渐变、辐射渐变、扫描性渐变

        android:type 渐变的类型
        linear 线性渐变,默认的渐变类型
        radial 放射渐变,设置该项时,android:gradientRadius也必须设置
        sweep 扫描性渐变
        android:startColor 渐变开始的颜色
        android:endColor 渐变结束的颜色
        android:centerColor 渐变中间的颜色
        android:angle 渐变的角度,线性渐变时才有效,必须是45的倍数,0表示从左到右,90表示从下到上
        android:centerX 渐变中心的相对X坐标,放射渐变时才有效,在0.0到1.0之间,默认为0.5,表示在正中间
        android:centerY 渐变中心的相对X坐标,放射渐变时才有效,在0.0到1.0之间,默认为0.5,表示在正中间
        android:gradientRadius 渐变的半径,只有渐变类型为radial时才使用
        android:useLevel 如果为true,则可在LevelListDrawable中使用

corners: 设置圆角,只适用于rectangle类型,可分别设置四个角不同半径的圆角,当设置的圆角半径很大时,比如200dp,就可变成弧形边了

        android:radius 圆角半径,会被下面每个特定的圆角属性重写
        android:topLeftRadius 左上角的半径
        android:topRightRadius 右上角的半径
        android:bottomLeftRadius 左下角的半径
        android:bottomRightRadius 右下角的半径

stroke: 设置描边,可描成实线或虚线。

        android:color 描边的颜色
        android:width 描边的宽度
        android:dashWidth 设置虚线时的横线长度
        android:dashGap 设置虚线时的横线之间的距离

例:

<?xml version="1.0" encoding="utf-8"?><!-- android:shape指定形状类型,默认为rectangle -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    //设置形状填充的颜色,只有android:color一个属性
    <solid android:color="#2F90BD" />

    //设置圆角,只适用于rectangle类型,可分别设置四个角不同半径的圆角,当设置的圆角半径很大时,比如200dp,就可变成弧形边了
    <corners
        android:bottomLeftRadius="15dp"
        android:bottomRightRadius="15dp"
        android:radius="200dp"
        android:topLeftRadius="15dp"
        android:topRightRadius="15dp" />

    //设置内容与形状边界的内间距,可分别设置左右上下的距离
    <padding
        android:bottom="10dp"
        android:left="10dp"
        android:right="10dp"
        android:top="10dp" />
    //设置描边,可描成实线或虚线。
    <stroke
        android:width="2dp"
        android:color="#e34000"
        android:dashGap="0.5dp"
        android:dashWidth="1dp" />
    //设置形状的渐变颜色,可以是线性渐变、辐射渐变、扫描性渐变
    <!--<gradient-->
        <!--android:angle="90"-->
        <!--android:centerColor="#ee33aa"-->
        <!--android:centerX="0.3"-->
        <!--android:centerY="0.3"-->
        <!--android:endColor="#fff"-->
        <!--android:gradientRadius="1dp"-->
        <!--android:startColor="#e34000"-->
        <!--android:type="linear"-->
        <!--android:useLevel="false" />-->
    <!--<gradient-->
        <!--android:angle="90"-->
        <!--android:centerColor="#ee33aa"-->
        <!--android:centerX="0.3"-->
        <!--android:centerY="0.3"-->
        <!--android:endColor="#fff"-->
        <!--android:gradientRadius="200dp"-->
        <!--android:startColor="#e34000"-->
        <!--android:type="radial"-->
        <!--android:useLevel="false" />-->
    <gradient
        android:angle="90"
        android:centerColor="#ee33aa"
        android:centerX="1"
        android:centerY="1"
        android:endColor="#fff"
        android:startColor="#e34000"
        android:type="sweep"
        android:useLevel="false" />
</shape>

2,oval:

oval用来画椭圆,而在实际应用中,更多是画正圆,比如消息提示,圆形按钮等

<?xml version="1.0" encoding="utf-8"?><!-- android:shape指定形状类型,默认为rectangle -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">

    <solid android:color="#2F90BD" />

    <!-- padding设置内间距 -->
    <padding
        android:bottom="4dp"
        android:left="4dp"
        android:right="4dp"
        android:top="4dp" />
    <!-- size设置形状的大小 -->
    <size
        android:width="40dp"
        android:height="80dp" />
    <!-- gradient设置渐变 -->
    <gradient
        android:endColor="#98FB98"
        android:gradientRadius="40dp"
        android:startColor="#D1EEEE"
        android:type="radial" />
</shape>

其属性与rectangle一样,至于size

        size: 设置形状默认的大小,可设置宽度和高度
        android:width 宽度
        android:height 高度

3,line

        line主要用于画分割线,是通过stroke和size特性组合来实现的,先看虚线的代码:

<?xml version="1.0" encoding="utf-8"?><!-- android:shape指定形状类型,默认为rectangle -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="line">

    <stroke
        android:width="1dp"
        android:color="#FF0000"
        android:dashGap="0.5dp"
        android:dashWidth="1dp"/>
    <!-- 虚线的高度 -->
    <size android:height="4dp" />
</shape>
  • 画线时,有几点特性必须要知道的:
  • 只能画水平线,画不了竖线;
  • 线的高度是通过stroke的android:width属性设置的;
  • size的android:height属性定义的是整个形状区域的高度;
  • size的height必须大于stroke的width,否则,线无法显示;
  • 线在整个形状区域中是居中显示的;
  • 线左右两边会留有空白间距,线越粗,空白越大;
  • 引用虚线的view需要添加属性android:layerType,值设为”software”,否则显示不了虚线。

4,ring

    首先,shape根元素有些属性只适用于ring类型,先过目下这些属性吧:

  • android:innerRadius 内环的半径
  • android:innerRadiusRatio浮点型,以环的宽度比率来表示内环的半径,默认为3,表示内环半径为环的宽度除以3,该值会被 android:innerRadius覆盖
  • android:thickness 环的厚度
  • android:thicknessRatio浮点型,以环的宽度比率来表示环的厚度,默认为9,表示环的厚度为环的宽度除以9,该值会被-android:thickness覆盖
  • android:useLevel 一般为false,否则可能环形无法显示,只有作为LevelListDrawable使用时才设为true

环的实现:

<?xml version="1.0" encoding="utf-8"?><!-- android:shape指定形状类型,默认为rectangle -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:innerRadiusRatio="3"
    android:shape="ring"
    android:thicknessRatio="9"
    android:useLevel="false">
    <gradient
        android:endColor="#2F90BD"
        android:startColor="#FFFFFF"
        android:type="sweep" />
    <stroke
        android:width="1dp"
        android:color="@android:color/black" />
</shape>
如果想让他成为
ProgressBar
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromDegrees="0"
    android:pivotX="50%"
    android:pivotY="50%"
    android:toDegrees="1080.0">
    <shape
        android:innerRadiusRatio="3"
        android:shape="ring"
        android:thicknessRatio="9"
        android:useLevel="false">
        <gradient
            android:endColor="#2F90BD"
            android:startColor="#FFFFFF"
            android:type="sweep" />
        <stroke
            android:width="1dp"
            android:color="@android:color/black" />
    </shape>
</rotate>
调用如下:

        <ProgressBar
            android:layout_gravity="center"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:layout_margin="8dp"
            android:indeterminate="false"
            android:indeterminateDrawable="@drawable/shape4" />









猜你喜欢

转载自blog.csdn.net/qq_32329745/article/details/80838127
今日推荐