Android XML绘图之 Shape

Android XML绘图之 Shape

参考资料:
1.《Android群英传》
2.Keegan小钢博客地址

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

通过Shape可以在XML中绘制各种形状,可以定义下面四种类型的形状

Android XML绘图之 Shape_第1张图片

下面是shape的全部属性

"1.0" encoding="utf-8"?>
"http://schemas.android.com/apk/res/android">
    rectangle|矩形,默认的形状,可以画出直角矩形、圆角矩形、弧形等
    oval|椭圆形,用得比较多的是画正圆
    line|线形,可以画实线和虚线
    ring|环形,可以画环形进度条

    
    "integer"//四个角的角度(会被下面四个角度属性覆盖)  
        android:bottomLeftRadius="integer"//四个位置各自的角度
        android:bottomRightRadius="integer"     
        android:topLeftRadius="integer"
        android:topRightRadius="integer"/>

    
    "integer"//描边的颜色
        android:color="color"//描边的宽度
        android:dashGap="integer"//设置虚线时的横线之间的距离
        android:dashWidth="integer"/>//设置虚线时的横线长度

    
    "@color/green"/>

    
    "integer"//下内间距
        android:left="integer"//左内间距
        android:right="integer"//右内间距
        android:top="integer"/>//上内间距

       
    45的倍数,0表示从左到右,90表示从下到上
        android:centerX 渐变中心的相对X坐标,放射渐变时才有效,在0.01.0之间,默认为0.5,表示在正中间
        android:centerY 渐变中心的相对X坐标,放射渐变时才有效,在0.01.0之间,默认为0.5,表示在正中间
        android:gradientRadius 渐变的半径,只有渐变类型为radial时才使用
        android:useLevel 如果为true,则可在LevelListDrawable中使用
        />

Rectangle

rectangle是默认的形状,也是用得最多的形状,一些文字背景、按钮背景、控件或布局背景等,这里用了上面几乎全部的属性

Android XML绘图之 Shape_第2张图片

下面是虚线矩形的代码

"1.0" encoding="utf-8"?>
"http://schemas.android.com/apk/res/android"
       android:shape="rectangle">

    
    "200dp"/>

    
    "@color/blue"/>

    
    "10dp"
        android:left="10dp"
        android:right="10dp"
        android:top="10dp"/>

   
    "1dp"
        android:color="@color/colorBlack"
        android:dashGap="10dp"
        android:dashWidth="10dp"/>

Oval

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

Android XML绘图之 Shape_第3张图片

下面是渐变的代码

"1.0" encoding="utf-8"?>
"http://schemas.android.com/apk/res/android"
       android:shape="oval">

    
    "50dp"
        android:height="50dp"/>

    
    "5dp"
        android:left="5dp"
        android:right="5dp"
        android:top="5dp"/>

    
    "@color/green"
        android:gradientRadius="20dp"
        android:type="radial"/>

注意

  • size: 设置形状默认的大小,可设置宽度和高度
  • 使用radial渐变时,必须指定渐变的半径,即android:gradientRadius属性

Line

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

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

Android XML绘图之 Shape_第4张图片

下面是虚线的代码

"1.0" encoding="utf-8"?>
"http://schemas.android.com/apk/res/android"
       android:shape="line">

    
    "4dp"/>

    
    "2dp"
        android:color="@color/yello"
        android:dashGap="5dp"
        android:dashWidth="10dp"/>

Ring

shape根元素有些属性只适用于ring类型,先过目下这些属性吧:
- android:innerRadius 内环的半径
- android:innerRadiusRatio 浮点型,以环的宽度比率来表示内环的半径,默认为3,表示内环半径为环的宽度除以3,该值会被android:innerRadius覆盖
- android:thickness 环的厚度
- android:thicknessRatio 浮点型,以环的宽度比率来表示环的厚度,默认为9,表示环的厚度为环的宽度除以9,该值会被android:thickness覆盖
- android:useLevel 一般为false,否则可能环形无法显示,只有作为LevelListDrawable使用时才设为true

Android XML绘图之 Shape_第5张图片

下面是第四个换的代码

"1.0" encoding="utf-8"?>
"http://schemas.android.com/apk/res/android"
       android:innerRadius="30dp"
       android:shape="ring"
       android:thickness="9dp"
       android:useLevel="false">
    "@color/red"
        android:type="sweep"/>
    "1dp"
        android:color="#ff0000"/>

完整代码点我下载GitHub

Thank you

  • 以上仅本人学习中遇到的问题,如有更多意见欢迎随时交流 issues
  • email:[email protected]

你可能感兴趣的:(Android,UI)