码迷,mamicode.com
首页 > 其他好文 > 详细

关于drawable中的shape标签

时间:2017-09-04 13:09:34      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:dimens   ash   线性   dial   样式   raw   右上角   die   关于   

corners、gradient、padding、size、solid、stroke

一、corners:

<corners    //定义圆角  
    android:radius="dimension"      //全部的圆角半径  
    android:topLeftRadius="dimension"   //左上角的圆角半径  
    android:topRightRadius="dimension"  //右上角的圆角半径  
    android:bottomLeftRadius="dimension"    //左下角的圆角半径  
    android:bottomRightRadius="dimension" />    //右下角的圆角半径  

     Corners标签是用来字义圆角的,其中radius与其它四个并不能共同使用。

  android:radius:定义四个角的的圆角半径

二、solid:

  用来指定内部填充颜色

  <solid  android:color="color" />

三、gradient

  gradient用以定义渐变色,可以定义两色渐变和三色渐变,及渐变样式

<gradient 
    android:type=["linear" | "radial" | "sweep"]    //共有3中渐变类型,线性渐变(默认)/放射渐变/扫描式渐变  
    android:angle="integer"     //渐变角度,必须为45的倍数,0为从左到右,90为从上到下  
    android:centerX="float"     //渐变中心X的相当位置,范围为0~1  
    android:centerY="float"     //渐变中心Y的相当位置,范围为0~1  
    android:startColor="color"   //渐变开始点的颜色  
    android:centerColor="color"  //渐变中间点的颜色,在开始与结束点之间  
    android:endColor="color"    //渐变结束点的颜色  
    android:gradientRadius="float"  //渐变的半径,只有当渐变类型为radial时才能使用  
    android:useLevel=["true" | "false"] />  //使用LevelListDrawable时就要设置为true。设为false时才有渐变效果

四、stroke

  描边属性

<stroke       
    android:width="dimension"   //描边的宽度  
    android:color="color"   //描边的颜色  
    // 以下两个属性设置虚线  
    android:dashWidth="dimension"   //虚线的宽度,值为0时是实线  
    android:dashGap="dimension" />      //虚线的间隔 

五、padding、size

  定义内部的边距和图片的大小




关于drawable中的shape标签

标签:dimens   ash   线性   dial   样式   raw   右上角   die   关于   

原文地址:http://www.cnblogs.com/xiao-dl/p/7472891.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!