Android中Shape的使用

先看一下文档对Shape Drawable的描述:

   Shape Drawable
An XML file that defines a geometric shape, including colors and gradients.一个定义几何形状的XML文件,包括颜色和渐变。
创建一个ShpeDrawable对象
Android:background="@drawable/xxx.xml"或相应的Java代码引用,Shape Drawable说白了就是可自定义的多样化的背景。

现在对比较重要的标签和属性进行解释:

和其它drawable文件一样,在drawable目录下创建xml文件,以<shape>为根元素,有两个重要属性

1、xmlns:android="http://schemas.android.com/apk/res/android"   这个不说了,必填

2、android:shape 定义shape的形状有4个值"rectangle","oval","line","ring"分别是矩形、椭圆、线型和环形,一般用的较多的是前两种

shape元素下的其它属性均仅适用于android:shape="ring"时。

Shape的子元素包括

<corners>

<gradient>

<padding>
<size>
<solid>
<stroke>

<corners>指定边角的半径,简单的说,数值越大角越圆,数值越小越趋近于直角,参数为:

  1. android:radius="integer"
  2. android:topLeftRadius="integer"
  3. android:topRightRadius="integer"
  4. android:bottomLeftRadius="integer"
  5. android:bottomRightRadius="integer"
 android:radius直接指定4个角的半径,另外4个属性可以单独设置4个角的角度

<gradient>的作用是设置颜色渐变,有以下属性

  1. android:angle="integer"    设置渐变的角度,数值必须为45的倍数,默认为0,即从左到右渐变。当值为90时,从下到上渐变,以此类推当值为180时
  2. 为270时从上向下渐变。
  3. android:centerX="integer"   渐变的水平中心点,值为0-1.0
  4. android:centerY="integer"   渐变的垂直中心点,值为0-1.0
  5. android:centerColor="integer"   中心的颜色,非必须
  6. android:endColor="color"    结束渐变时的颜色
  7. android:gradientRadius="integer"   渐变的半径,仅适用于android:type="radial"时
  8. android:startColor="color"  开始渐变时的颜色
  9. android:type=["linear" | "radial" | "sweep"]   渐变的类型,分别为线状、中心放射状、经测试类似于雷达扫描的一种形态(词汇匮乏不知道该怎么翻译,⊙﹏⊙b汗)
  10. android:usesLevel=["true" | "false"]   貌似是可以被当做level-list用的意思

<padding>是为内容或子标签设置边距,4个属性top、bottom、left、right,需要注意的是这个标签的作用是为内容设置与当前应用此shape的View的边距,而不是设置当前View与父元素的边距。

<size>就不用说了,设置背景大小,width和height俩属性。

    <solid>只有一个属性,即color,设置整个背景的颜色,如果已经定义了渐变色,那么这个属性就无效了。

    <stroke>  描边,即设置边框

  1. <span style="font-size:16px;">        android:width="integer"   描边的宽度
  2. android:color="color"    描边的颜色
  3. android:dashWidth="integer"   必须与下面的dashGap搭配使用缺一不可,也就是说可以两个属性都不用,如果用,两个都必须得用。那么这哥俩有什么作用呢?
  4. 原来是可以实现边框分段的效果,前者指定每段的长度后者指定两端之间的间隙或者说距离。
  5. android:dashGap="integer"   上图说明,如下,灰色部分为背景,黄绿色部分是边框(好恶心的颜色啊,我随便填了几个数出来的)</span>

至此,关于Shape Drawable的大部分功能都介绍完了,快去做出自己的漂亮的UI吧。

时间: 2024-12-28 23:08:36

Android中Shape的使用的相关文章

Android中shape属性详解

一.简单使用 刚开始,就先不讲一堆标签的意义及用法,先简单看看shape标签怎么用. 1.新建shape文件 首先在res/drawable文件夹下,新建一个文件,命名为:shape_radius.xml 内容是这样的:(先不需要理解,先看shape怎么用) [html] view plaincopyprint? <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="ht

Android中shape中的属性大全

Android中常常使用shape来定义控件的一些显示属性,今天看了一些shape的使用,对shape有了大体的了解,稍作总结: 先看下面的代码: <shape> <!-- 实心 --> <solid android:color="#ff9d77"/> <!-- 渐变 --> <gradient android:startColor="#ff8c00" android:endColor="#FFFFFF

Android中shape的使用(转)

http://kofi1122.blog.51cto.com/2815761/521605 Android中常常使用shape来定义控件的一些显示属性,今天看了一些shape的使用,对shape有了大体的了解,稍作总结: 先看下面的代码:        <shape>            <!-- 实心 -->            <solid android:color="#ff9d77"/>            <!-- 渐变 --&

Android中shape的使用 (转载)

转自:http://blog.csdn.net/ekeuy/article/details/12349853 在看很多开源代码中都使用到了shape,我看代码的时候一般都一带而过了,没有仔细去研究,这几天刚好有空就顺带详细了解一下,在学习的过程中参考了官方文档和网上的示例代码,本文后面会附上测试代码. Android应用中使用shape的步骤是这样子的,(1)在res/drawable下定义一个xml文件用于定义shape:(2)在代码中或者在xml文件中引用这个文件就可以看到效果了.下面开始介

android中shape 的使用

android 开发中 对于 shape 和 selector的使用,一直都不是很熟练, 记录一下.便于以后参考. 举个项目中例子图 对于上面的2个radiobutton ,背景我们可以让美工做一个.9图来实现. 但是最后还是自己用shape 搞一下. 按钮布局如下: <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:la

android中shape的属性

<shape> <!– 实心 –> <solid android:color=”#ff9d77″/> <!– 渐变 –> <gradient android:startColor=”#ff8c00″ android:endColor=”#FFFFFF” android:angle=”270″ /> <!– 描边 –> <stroke android:width=”2dp” android:color=”#dcdcdc” />

转 Android中shape中的属性大全

<shape>            <!-- 实心 -->            <solid android:color="#ff9d77"/>            <!-- 渐变 -->            <gradient                android:startColor="#ff8c00"                android:endColor="#FFFFFF

Android中shape的基本使用

shape用于设定形状,可以在selector,layout等里面使用,点击效果神马的我们可以不需要UI的切图,自己直接使用shape搞定,比较方便快捷. 新建一个shape.xml默认为矩形,可以通过android:shape=""来设置具体的形状,有这么四种:rectangle 矩形,oval 椭圆形,line 线,ring 环形.shape有6个子标签,各属性如下: <?xml version="1.0" encoding="utf-8&quo

Android中使用shape来定义控件

本文章转接于:http://kofi1122.blog.51cto.com/2815761/521605 Android中常常使用shape来定义控件的一些显示属性,今天看了一些shape的使用,对shape有了大体的了解,稍作总结: 先看下面的代码:        <shape>            <!-- 实心 -->            <solid android:color="#ff9d77"/>            <!--