shape--> shape属性:

  rectangle: 矩形,默认的形状,可以画出直角矩形、圆角矩形、弧形等

  solid: 设置形状填充的颜色,只有android:color一个属性

  android:color 填充的颜色
  padding: 设置内容与形状边界的内间距,可分别设置左右上下的距离

  一: 

    rectangle:

        

  • 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 设置虚线时的横线之间的距离
    • |

      二:oval oval用来画椭圆,而在实际应用中,更多是画正圆,比如消息提示,圆形按钮等

    • size: 设置形状默认的大小,可设置宽度和高度
      • android:width 宽度
      • android:height 高度
    • 下面是例子:
    • <?xml version="1.0" encoding="utf-8"?>
      <!-- android:shape指定形状类型,默认为rectangle -->
      <shape xmlns:android="http://schemas.android.com/apk/res/android"
      android:shape="oval">
      <!-- padding设置内间距 -->
      <padding
      android:bottom="4dp"
      android:left="4dp"
      android:right="4dp"
      android:top="4dp" />
      <!-- size设置形状的大小 -->
      <size
      android:width="40dp"
      android:height="40dp" />
      <!-- gradient设置渐变 -->
      <gradient
      android:endColor="#000000"
      android:gradientRadius="40dp"
      android:startColor="#FFFFFF"
      android:type="radial" />
      </shape>
    • 引用的代码:
      <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:layout_margin="8dp"
      android:text="6"
      android:textSize="20sp"
      android:textColor="@android:color/black"
      android:background="@drawable/bg_oval_with_gradient" />

      三: line   line主要用于画分割线,是通过stroke和size特性组合来实现的,先看虚线的代码:

    • <?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" /> 有dashwidth 和 dashgap 表示的虚线
      <!-- 形状的高度 -->
      <size android:height="4dp" />
      </shape>

      画线时,有几点特性必须要知道的:

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

      四: ring  圆 

    • 首先,shape根元素有些属性只适用于ring类型,先过目下这些属性吧:

      • android:innerRadius 内环的半径
      • android:innerRadiusRatio 浮点型,以环的宽度比率来表示内环的半径,默认为3,表示内环半径为环的宽度除以3,该值会被android:innerRadius覆盖
      • android:thickness 环的厚度
      • android:thicknessRatio 浮点型,以环的宽度比率来表示环的厚度,默认为9,表示环的厚度为环的宽度除以9,该值会被android:thickness覆盖
      • android:useLevel 一般为false,否则可能环形无法显示,只有作为LevelListDrawable使用时才设为true
    •  
    •   <gradient  />   -->渐变色
    •       < stroke   width="1dp" color="@android:color/black"/>   --> 边框的颜色 宽度

    如果想让ring 转起来   那么在外边加上一层 rotate就行了

    

<ProgressBar
android:layout_width="100dp"
android:layout_height="100dp"
android:indeterminateDrawable="@drawable/rotate_shape" />

android shape详解的更多相关文章

  1. Android Shape 详解

    1 http://blog.csdn.net/feng88724/article/details/6398193 2 <shape xmlns:android="http://sche ...

  2. [整理]Selector、shape详解

    Selector.shape详解(一) Selector的结构描述: <?xml version="1.0" encoding="utf-8"?> ...

  3. Selector、shape详解,注意这两种图像资源都以XML方式存放在drawable不带分辨率的文件夹中

    Selector.shape详解(一) Selector的结构描述: <?xml version="1.0" encoding="utf-8"?> ...

  4. Android Notification 详解(一)——基本操作

    Android Notification 详解(一)--基本操作 版权声明:本文为博主原创文章,未经博主允许不得转载. 微博:厉圣杰 源码:AndroidDemo/Notification 文中如有纰 ...

  5. Android Notification 详解——基本操作

    Android Notification 详解 版权声明:本文为博主原创文章,未经博主允许不得转载. 前几天项目中有用到 Android 通知相关的内容,索性把 Android Notificatio ...

  6. Android ActionBar详解

    Android ActionBar详解 分类: Android2014-04-30 15:23 1094人阅读 评论(0) 收藏 举报 androidActionBar   目录(?)[+]   第4 ...

  7. Android 签名详解

    Android 签名详解 AndroidOPhoneAnt设计模式Eclipse  在Android 系统中,所有安装 到 系统的应用程序都必有一个数字证书,此数字证书用于标识应用程序的作者和在应用程 ...

  8. Android编译系统详解(一)

    ++++++++++++++++++++++++++++++++++++++++++ 本文系本站原创,欢迎转载! 转载请注明出处: http://blog.csdn.net/mr_raptor/art ...

  9. Android布局详解之一:FrameLayout

      原创文章,如有转载,请注明出处:http://blog.csdn.net/yihui823/article/details/6702273 FrameLayout是最简单的布局了.所有放在布局里的 ...

随机推荐

  1. Android控件之EditText(输入文本框控件)

    一.EditText控件概述 EditText是一个非常重要的组件,可以说他是用户和Android应用进行数据传输窗口  有了他就等于有了一扇和Android应用传输的门,通过他用户可以把数据传输给A ...

  2. HTML5结合百度地图API创建地图应用

    具体的百度地图API的使用方法查看百度地图API里的DEMO <style> #div1{ width:400px; height:400px; border:1px #000 solid ...

  3. foreach 相关

    20 Nov 08 深入理解PHP原理之foreach 作者: Laruence(   ) 本文地址: http://www.laruence.com/2008/11/20/630.html 转载请注 ...

  4. eclipse 删除 tomcat8 重新添加的问题

    今天手贱,把Eclipse里的tomcat删掉了,然后发现后面就不能重建了,很蛋疼啊...而且今天也发现eclipse里的tomcat启动时会把本地原来conf目录下的配置比如:tomcat-user ...

  5. 【新手练习】类似Path的按钮,

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  6. 关于gridview 实现查询功能的方法

    protected void btnSearch_Click(object sender, EventArgs e) { TestCon(); } protected void btnAllData_ ...

  7. 线性渐变--linear-gradient

    <!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head>    < ...

  8. 采用SHELL,通过SQL LOAD导入一定格式的txt文件至数据库中

    1. 准备工作,window中可直接通过sqlload直接导入文件,linux下,需要有sqlload的相关软件. 2. SQL脚本(MID_DFDZ.ctl) LOAD DATA INTO TABL ...

  9. PHP——字符串统一转码为GBK,自动判断是否UTF8并转码

    public static function strToGBK($strText) { $encode = mb_detect_encoding($strText, array('UTF-8','GB ...

  10. splunk 索引过程

    术语: Event :Events are records of activity in log files, stored in Splunk indexes. 简单说,处理的日志或话单中中一行记录 ...