<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android">     <gradient          android:startColor="#3A3C39"          android:endColor="#181818"         android:angle="270"      />     <corners android:radius="0dp" /> </shape>android:background="@drawable/shape_background_grey" 

其中 android:angle="270" 代表方向, 270表示从上到下,180表示从右到左,默认从左

<shape xmlns:android="http://schemas.android.com/apk/res/android"    android:shape="rectangle">    <gradient android:type="radial" android:gradientRadius="250"        android:startColor="#E9E9E9" android:endColor="#D4D4D4" /></shape><shape xmlns:android="http://schemas.android.com/apk/res/android"> <gradient android:angle="0" android:startColor="#FFdaf3fc"  android:centerColor="#FFd4e9a9" android:endColor="#FFdaf3fc"/></shape>


在这里要注意android:type="radial"类型的使用会有不同的效果

android:centerColor="#FFd4e9a9" 通常这个也不是被人常用

<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android"android:shape="rectangle"><gradient android:startColor="#509245" android:centerColor="#3e8532"android:endColor="#509245" android:type="linear" android:angle="90"android:centerX="0.5" android:centerY="0.5" /><padding android:left="7dp" android:top="7dp" android:right="7dp"android:bottom="7dp" /><corners android:radius="4dp" /></shape>

android:shape 配置的是图形的形式,主要包括方形、圆形等,上边代码为方形。gradient节点主要配置起点颜色、终点颜色、中间点的坐标、中间点的颜色、渐变角度(90度为上下渐变,0为左右渐变),padding节点主要配置上下左右边距,corners节点配置四周园角的半径。


转贴:http://ming-fanglin.iteye.com/blog/753465

更多相关文章

  1. android 4.2修改设置菜单的背景颜色
  2. Android App更改背景颜色
  3. c# webservice中访问http和https的wsdl以及生成配置节点的不同之
  4. C#根据表格偶数与奇数加载不同颜色的实例分析
  5. c语言颜色代码
  6. go语言如何改变回显颜色
  7. go语言如何删除链表节点
  8. java对XML文件的解析、节点的增加、删除操作总结
  9. XML(4)XDocument和XmlDocument搜索指定的节点

随机推荐

  1. Android:Activity(四):Activity生命周期
  2. Android手机开发:网络连接-打开Url下载信
  3. AIDL用法总结
  4. Android(安卓)APT(Java注解应用)
  5. Android(安卓)-- NotificationManager an
  6. Android自定义照相机实现 拍照 录像
  7. 安卓控件之单选按钮 (RadioButton和Radio
  8. Android之TabLayout使用和默认选中+移动(
  9. SuperMap iClient 6R(2012) SP3新特性预
  10. 实时监听Android系统的网络连接状态