亦余心之所善兮,虽九死其犹未悔。这篇文章主要讲述android shape.xml 属性详解相关的知识,希望能为你提供帮助。
转载源:http://blog.csdn.net/harvic880925/article/details/41850723
一、简单使用刚开始,就先不讲一堆标签的意义及用法,先简单看看shape标签怎么用。
1、新建shape文件
首先在res/drawable文件夹下,新建一个文件,命名为:shape_radius.xml
内容是这样的:(先不需要理解,先看shape怎么用)
[html]view plaincopy
文章图片
文章图片
- < ?xml version="1.0" encoding="utf-8"?>
- < shape xmlns:android="http://schemas.android.com/apk/res/android" >
- < corners android:radius="20dip"/>
- < solid android:color="#ff00ff"/>
- < /shape>
在定义好shape文件后,下一步就是将其添加到控件中,添加到控件中,一般是使用设置background属性,将其为控件背景,下面,我们将其设置为MainActivity对应的布局中(activity_main.xml),将其设为TextView的背景,看显示出来 是什么样子的。
[html]view plaincopy
文章图片
文章图片
- < RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context="com.harvic.tryshape.MainActivity" >
- < TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_margin="50dip"
- android:text="@string/hello_world"
- android:background="@drawable/shape_radius"/>
- < /RelativeLayout>
文章图片
二、基本属性(corners、gradient、padding、size、solid、stroke)【android shape.xml 属性详解】上面给大家简单的讲了下shape标签组的简单使用方法,下面就具体讲讲shape标签里所具有的几个子标签及所具有的属性。
1、Corners
[html] view plaincopy
文章图片
文章图片
- < corners //定义圆角
- android:radius="dimension" //全部的圆角半径
- android:topLeftRadius="dimension" //左上角的圆角半径
- android:topRightRadius="dimension" //右上角的圆角半径
- android:bottomLeftRadius="dimension" //左下角的圆角半径
- android:bottomRightRadius="dimension" /> //右下角的圆角半径
Android:radius:定义四个角的的圆角半径。
其它四个是逐个字义每个角的圆角半径。
使用:
控件布局:
[html] view plaincopy
文章图片
文章图片
- < RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- < TextView
- android:layout_width="100dp"
- android:layout_height="100dp"
- android:layout_margin="50dip"
- android:text="@string/hello_world"
- android:background="@drawable/shape_radius"/>
- < /RelativeLayout>
[html] view plaincopy
文章图片
文章图片
- < ?xml version="1.0" encoding="utf-8"?>
- < shape xmlns:android="http://schemas.android.com/apk/res/android" >
- < corners android:radius="20dip"/>
- < solid android:color="#ffff00"/>
- < /shape>
文章图片
2、solid
solid用以指定内部填充色
只有一个属性:
[html] view plaincopy
文章图片
文章图片
- < solid android:color="color" />
[html] view plaincopy
文章图片
文章图片
- < ?xml version="1.0" encoding="utf-8"?>
- < shape xmlns:android="http://schemas.android.com/apk/res/android" >
- < solid android:color="#ffff00"/>
- < /shape>
文章图片
3、gradient
gradient用以定义渐变色,可以定义两色渐变和三色渐变,及渐变样式,它的属性有下面几个:
[html] view plaincopy
文章图片
文章图片
- < 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时才有渐变效果
(1)先看看这几个属性的使用方法:[html] view plaincopy
文章图片
文章图片
- android:type=["linear" | "radial" | "sweep"]
- android:startColor="color" //渐变开始点的颜色
- android:centerColor="color" //渐变中间点的颜色,在开始与结束点之间
- android:endColor="color" //渐变结束点的颜色
- android:gradientRadius="float" //渐变的半径,只有当渐变类型为radial时才能使用
文章图片
需要注意的一点是,在构造放射性渐变时,要加上android:gradientRadius属性(渐变半径),即必须指定渐变半径的大小才会起作用,下面列出这三个渐变方式的shape代码,供大家参考:
线性渐变:
[html] view plaincopy
文章图片
文章图片
- < ?xml version="1.0" encoding="utf-8"?>
- < shape xmlns:android="http://schemas.android.com/apk/res/android" >
- < gradient
- android:type="linear"
- android:startColor="#ff0000"
- android:centerColor="#00ff00"
- android:endColor="#0000ff"/>
- < /shape>
[html] view plaincopy
文章图片
文章图片
- < ?xml version="1.0" encoding="utf-8"?>
- < shape xmlns:android="http://schemas.android.com/apk/res/android" >
- < gradient
- android:type="radial"
- android:startColor="#ff0000"
- android:centerColor="#00ff00"
- android:endColor="#0000ff"
- android:gradientRadius="100"/>
- < /shape>
[html] view plaincopy
文章图片
文章图片
- < ?xml version="1.0" encoding="utf-8"?>
- < shape xmlns:android="http://schemas.android.com/apk/res/android" >
- < gradient
- android:type="sweep"
- android:startColor="#ff0000"
- android:centerColor="#00ff00"
- android:endColor="#0000ff"/>
- < /shape>
(2)、android:angle属性(仅对线性渐变有效)[html] view plaincopy
文章图片
文章图片
- android:angle="integer" //渐变角度,必须为45的倍数,0为从左到右,90为从上到下
文章图片
能过跟上一个图对比可以发现,angle属性确实只对线性渐变有效,其它两种渐变方式都没有任何动静,下面是此时的线性渐变shape代码:
[html] view plaincopy
文章图片
文章图片
- < ?xml version="1.0" encoding="utf-8"?>
- < shape xmlns:android="http://schemas.android.com/apk/res/android" >
- < gradient
- android:type="linear"
- android:startColor="#ff0000"
- android:centerColor="#00ff00"
- android:endColor="#0000ff"
- android:angle="45"/>
- < /shape>
[html] view plaincopy
文章图片
文章图片
- < ?xml version="1.0" encoding="utf-8"?>
- < shape xmlns:android="http://schemas.android.com/apk/res/android" >
- < gradient
- android:type="sweep"
- android:startColor="#ff0000"
- android:centerColor="#00ff00"
- android:endColor="#0000ff"
- android:centerX="0.2"
- android:centerY="0.8"/>
- < /shape>
文章图片
(4)android:useLeveluseLevel属性通常不使用。该属性用于指定是否将该shape当成一个LevelListDrawable来使用,默认值为false。
4、stroke
这是描边属性,可以定义描边的宽度,颜色,虚实线等
[html] view plaincopy
文章图片
文章图片
- < stroke
- android:width="dimension" //描边的宽度
- android:color="color" //描边的颜色
- // 以下两个属性设置虚线
- android:dashWidth="dimension" //虚线的宽度,值为0时是实线
- android:dashGap="dimension" /> //虚线的间隔
文章图片
我们使用绿色虚线描边,虚线高度是20dp,虚线宽度为10dp虚线间距为1dp:
[html] view plaincopy
文章图片
文章图片
- < ?xml version="1.0" encoding="utf-8"?>
- < shape xmlns:android="http://schemas.android.com/apk/res/android" >
- < stroke
- android:width="20dp"
- android:color="#00ff00"
- android:dashWidth="10dp"
- android:dashGap="1dp" />
- < /shape>
文章图片
5、size和padding
这两个基本上不怎么用,因为他们所具有的功能,控件本身也能实现。
size:是用来定义图形的大小的。
[html] view plaincopy
文章图片
文章图片
- < size
- android:width="dimension"
- android:height="dimension" />
[html] view plaincopy
文章图片
文章图片
- < padding
- android:left="dimension"
- android:top="dimension"
- android:right="dimension"
- android:bottom="dimension" />
三、Shape的属性(rectangle、oval、line、ring)上面我们讲了Shape的子标签的的作用,但Shape本身还没讲,Shape自已是可以定义当前Shape的形状的,比如上面的矩形,还有椭圆形,线形和环形;这些都是通过Shape标签的 shape属性来定义的,Shape标签总共有下面几个属性,我们一个个讲:
[html] view plaincopy
文章图片
文章图片
- android:shape=["rectangle" | "oval" | "line" | "ring"]
- shape的形状,默认为矩形,可以设置为矩形(rectangle)、椭圆形(oval)、线性形状(line)、环形(ring)
- 下面的属性只有在android:shape="ring时可用:
- android:innerRadius 尺寸,内环的半径。
- android:innerRadiusRatio 浮点型,以环的宽度比率来表示内环的半径,
- android:thickness 尺寸,环的厚度
- android:thicknessRatio 浮点型,以环的宽度比率来表示环的厚度,例如,如果android:thicknessRatio="2",
- android:useLevel boolean值,如果当做是LevelListDrawable使用时值为true,否则为false.
注意,无论这里shape取什么形状,他的子标签都是可用的,但有时并不会有效果,比如在shape为椭圆时,那corners标签就不会有效果,很显然的道理。下面一个个看看各个形状都是怎么样的;
1、rectangle (矩形)
这就是上一节我们使用的形状,当我们不指定shape属性时,默认就是矩形的。
控件代码:
[html] view plaincopy
文章图片
文章图片
- < LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal" >
- < TextView
- android:layout_width="300dp"
- android:layout_height="100dp"
- android:layout_margin="10dp"
- android:textColor="#ffffff"
- android:textSize="18sp"
- android:textStyle="bold"
- android:background="@drawable/try_shape_3"/>
- < /LinearLayout>
[html] view plaincopy
文章图片
文章图片
- < ?xml version="1.0" encoding="utf-8"?>
- < shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
- < solid android:color="#ff00ff"/>
- < /shape>
文章图片
2、oval(椭圆)
控件代码不变,下面是shape代码:
[html] view plaincopy
文章图片
文章图片
- < ?xml version="1.0" encoding="utf-8"?>
- < shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="oval">
- < solid android:color="#ff00ff"/>
- < /shape>
文章图片
3、line(线形)
没觉得这个能有什么用……,也不讲了,没什么意思
4、ring(环形)
还记得他所特有的几个属性么:
[html] view plaincopy
文章图片
文章图片
- android:innerRadius 尺寸,内环的半径。
- android:thickness 尺寸,环的厚度
- android:innerRadiusRatio 浮点型,以环的宽度比率来表示内环的半径,
- 例如,如果android:innerRadiusRatio,表示内环半径等于环的宽度除以5,这个值是可以被覆盖的,默认为9.
- android:thicknessRatio 浮点型,以环的宽度比率来表示环的厚度,例如,如果android:thicknessRatio="2",
- 那么环的厚度就等于环的宽度除以2。这个值是可以被android:thickness覆盖的,默认值是3.
- android:useLevel boolean值,如果当做是LevelListDrawable使用时值为true,否则为false.
举个例子:
控件定义:
[html] view plaincopy
文章图片
文章图片
- < LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal" >
- < TextView
- android:layout_width="300dp"
- android:layout_height="100dp"
- android:layout_margin="10dp"
- android:textColor="#ffffff"
- android:textSize="18sp"
- android:textStyle="bold"
- android:background="@drawable/try_shape_2"/>
- < /LinearLayout>
[html] view plaincopy
文章图片
文章图片
- < ?xml version="1.0" encoding="utf-8"?>
- < shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="ring"
- android:innerRadius="20dp"
- android:thickness="50dp"
- android:useLevel="false">
- < solid android:color="#ff00ff"/>
- < /shape>
文章图片
源码地址:http://download.csdn.net/detail/harvic880925/8249629
请大家尊重原创者版权,转载请标时出处:http://blog.csdn.net/harvic880925/article/details/41850723 谢谢。
推荐阅读
- Android Activity 和 ViewGroup中事件触发和传递机制
- C#方法代理/委托(delegate)用法介绍和示例
- C# GroupBox类用法示例介绍
- C# HashSet类介绍和用法示例
- C#如何将整个ArrayList复制到一维数组
- C# Int16结构用法示例介绍
- C# Int32结构用法示例和介绍
- C# Int64结构用法介绍和示例
- C#|跳转语句(Break, Continue, Goto, Return和Throw)