看下效果图

shape即形状的意思。其包含的元素有
<corners />
<gradient />
<padding />
<size />
<solid />
<stroke />
元素具体描述信息如下:
1、solid
描述:内部填充
属性:
android:color 填充颜色
2、size
描述:size: 大小
属性:
android:width 表示形状的宽度
android:height 表示形状的高度


3、gradient

描述: 渐变色
属性:
android:startColor起始颜色
android:endColor 结束颜色
android:angle 渐变角度(PS:当angle=0时,渐变色是从左向右。 然后逆时针方向转,当angle=90时为从下往上。angle必须为45的整数倍)
android:type 渐变类型(取值:linear、radial、sweep)
linear
线性渐变,这是默认设置

radial
放射性渐变,以开始色为中心。

sweep
扫描线式的渐变。

android:centerColor渐变中间颜色,即开始颜色与结束颜色之间的颜色
android:useLevel 如果要使用LevelListDrawable对象,就要设置为true。设置为true无渐变。false有渐变色
android:gradientRadius渐变色半径.当 android:type="radial" 时才使用。单独使用 android:type="radial"会报错。
android:centerX 渐变中心X点坐标的相对位置
android:centerY 渐变中心Y点坐标的相对位置
4、stroke


描述: stroke:描边相当于html中的盒子模型的border


属性:

android:width 描边的宽度


android:color 描边的颜色


android:dashWidth 表示描边的样式是虚线的宽度,
值为0时,表示为实线。值大于0则为虚线。

android:dashGap表示描边为虚线时,虚线之间的间隔 即“ - - - - ”



5、corners
描述: corners: 圆角
属性:

android:radius半径


android:topLeftRadius左上角半径


android:topRightRadius右上角半径


注意一下两个属性比较不同:


android:bottomLeftRadius 右下角半径


android:bottomRightRadius 左下角半径

6、padding
描述:内边距,即内容与边的距离

属性:
android:left左内边距

android:top 上内边距


android:right右内边距


android:bottom 下内边距



具体代码如下:
复制内容到剪贴板
代码:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

<!-- 填充 -->
<solid
android:color="#B2B2B2"
/>

<!-- 大小 -->
<size
android:width="200dp"
android:height="50dp"
/>

<!-- 渐变色 -->
<gradient
android:startColor="#DBDCDD"
android:endColor="#B8B9BB"
android:centerColor="#ADADAF"
android:angle="270"
/>

<!-- 描边 -->
<stroke
android:width="2dp"
android:color="#3D4148"
/>

<!-- 圆角 -->
<corners
android:radius="5dp"
/>

<padding
android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp"
/>

</shape>

更多相关文章

  1. android:shape的使用
  2. Android(安卓)Property Animation属性动画初识:透明渐变(1)
  3. android shape的使用
  4. Android主题与Toolbar样式之间的关系
  5. Android(安卓)之 shape和selector用法介绍
  6. 我的android 第7天 - 控件美化 和 编码性能优化
  7. android Shape使用
  8. 重拾Android之路之开发准备
  9. android shape的使用

随机推荐

  1. Android ContentObserver
  2. Android 2.3.3 更新提供交互连接
  3. 使用Android自带Gallery组件实现CoverFlo
  4. Android日记之2012/02/13——Android中Bu
  5. Android中的Fragment详解 ("碎片"这个翻
  6. 什么是 Android
  7. Android开发3:项目目录介绍&HelloWorld
  8. Android读写XML(中)――SAX
  9. Android——GT库发布
  10. 解决android:ellipsize="end" 异常