shape自定义图形工具

目录介绍
1.简单介绍
2.shape可以自定义四种类型的形状
3.rectangle【矩形】介绍
4.oval【圆】介绍
5.line【线形】介绍
6.ring【环形】介绍

1.简单介绍
一个应用,应该保持一套统一的样式,包括Button、EditText、ProgressBar、Toast、Checkbox等各种控件的样式,还包括控件间隔、文字大小和颜色、阴影等等。web的样用css来定义,而android的样式主要则是通过shape、selector、 layer-list、level-list、style、theme等组合实现。

2.shape可以自定义四种类型的形状,通过android:shape属性指定
rectangle 矩形,默认的形状,可以画出直角矩形、圆角矩形、弧形等
oval 椭圆形,用得比较多的是画正圆
line 线形,可以画实线和虚线
ring 环形,可以画环形进度条

3.rectangle介绍【用的最多】

**1.rectangle是默认的形状,也是用得最多的形状,一些文字背景、按钮背景、控件或布局背景等**
**2.相关特性说明(四种类型共有的)**
**solid: 设置形状填充的颜色,只有android:color一个属性**
         android:color                      填充的颜色
**padding: 设置内容与形状边界的内间距,可分别设置左右上下的距离**  
    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              设置虚线时的横线之间的距离

**3.举例子**

![Image.png](http://upload-images.jianshu.io/upload_images/4432347-487461c226b7d232.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

<?xml version="1.0" encoding="utf-8"?>
<!-- android:shape指定形状类型,默认为rectangle -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<!-- solid指定形状的填充色,只有android:color一个属性 -->
<solid android:color="#2F90BD" />
<!-- padding设置内容区域离边界的间距 -->
<padding
android:bottom="12dp"/>
<!-- corners设置圆角,只适用于rectangle -->
<corners android:radius="20dp" />
<!-- stroke设置描边 -->
<stroke
android:width="2dp"
android:color="@android:color/darker_gray"
android:dashGap="4dp"
android:dashWidth="4dp" />
</shape>

接着在要使用的view里引用就可以了,例如本例中用做TextView的background:
<TextView
……
android:background="@drawable/bg_rectangle_with_stroke_dash" />

4.oval介绍

1.oval用来画椭圆,而在实际应用中,更多是画正圆,比如消息提示,圆形按钮等
2.size是用来设置形状大小的,如下:

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

3.绘制圆

![Image.png](http://upload-images.jianshu.io/upload_images/4432347-c06d24f85a17dc43.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

<?xml version="1.0" encoding="UTF-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <solid android:color="@color/redTab" />
    <padding
        android:left="1px"
        android:top="1px"
        android:right="1px"
        android:bottom="1px" />
    <stroke
        android:width="1px"
        android:color="@android:color/white" />
    <size android:width="15dp"
          android:height="15dp" />
</shape>

5.line介绍

**1.line主要用于画分割线,是通过stroke和size特性组合来实现的**
2.先看虚线的代码:
<?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="#2F90BD"
android:dashGap="2dp"
android:dashWidth="4dp" />
<!-- 形状的高度 -->
<size android:height="4dp" />
</shape>

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

6.ring介绍

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

**2.举例,绘制环形代码**

![Image.png](http://upload-images.jianshu.io/upload_images/4432347-637422a5a95a1dfa.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

<?xml version="1.0" encoding="utf-8"?>
<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>

**3.如果想让这个环形旋转起来,变成可用的进度条,则只要在shape外层包多一个rotate元素就可以**
<?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="8"
android:useLevel="false">
<gradient
android:endColor="#2F90BD"
android:startColor="#FFFFFF"
android:type="sweep" />
</shape>
</rotate>

1.在列表页面,经常需要在要显示的Item的头部区域显示一个过渡的顶部背景区域,如下图区域:


1.创建 video_title_bg.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:angle="90"
        android:endColor="#FF000000"
        android:startColor="#00FFFFFF" />
</shape>
<View
       android:layout_width="match_parent"
       android:layout_height="60dp"
       android:alpha="0.8"
       android:background="@drawable/video_title_bg" />

作者:潇湘剑雨_      lpftobetheone

來源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值