shape使用、渐变色、分割线、边框、半透明、半透明阴影效果。

首先简单了解一下shape中常见的属性。(详细介绍参看 api文档)

转载请注明:Rflyee_大飞:http://blog.csdn.net/rflyee/article/details/20785495

<?xml version="1.0" encoding="utf-8"?>
<shape
   
xmlns:android="http://schemas.android.com/apk/res/android"
   
android:shape=["rectangle" | "oval" | "line" | "ring"] > --- 默认为rectangle
   
<corners -- shape=“rectangle”时使用,
       
android:radius="integer" -- 半径,会被下边的属性覆盖,默认为1dp,
       
android:topLeftRadius="integer"
       
android:topRightRadius="integer"
       
android:bottomLeftRadius="integer"
       
android:bottomRightRadius="integer" />
   
<gradient -- 渐变
       
android:angle="integer"
       
android:centerX="integer"
       
android:centerY="integer"
       
android:centerColor="integer"
       
android:endColor="color"
       
android:gradientRadius="integer"
       
android:startColor="color"
       
android:type=["linear" | "radial" | "sweep"]
       
android:useLevel=["true" | "false"] />
   
<padding
       
android:left="integer"
       
android:top="integer"
       
android:right="integer"
       
android:bottom="integer" />
   
<size -- 指定大小,一般用在imageview配合scaleType属性使用。大小一般会适配滴
       
android:width="integer"
       
android:height="integer" />
   
<solid -- 填充颜色,可是是十六进制颜色。(比如想设置半透明效果,直接使用十六就只就OK)
       
android:color="color" />
   
<stroke -- 指定边框,border,dashWidth和dashGap有一个为0dp则为
       
android:width="integer"
       
android:color="color"
       
android:dashWidth="integer" -- 虚线宽度
       
android:dashGap="integer" /> -- 虚线间隔宽度

注意: 1、android:radius,半 径,会被下边的单个角度半径属性覆盖,默认为1dp, 2、在使用时,如果单独设置四个角度,又大小不一致时,eclipse的graphics preview会报错。但是直接真机运行即可。(比如实线上边直角,下边屈角的效果)
Note:  The shape scales to the size of the container View proportionate to the dimensions defined here, by default. When you use the shape in an  ImageView , you can restrict scaling by setting the  android:scaleType  to  "center"
举个栗子: 1、渐变色   res/drawable/gradient_box.xml :
<?xml version="1.0" encoding="utf-8"?>
xmlns:android="http://schemas.android.com/apk/res/android"
   
android:shape="rectangle">
   

       
android:startColor="#FFFF0000"
       
android:endColor="#80FF00FF"
       
android:angle="45"/>
   
android:left="7dp"
       
android:top="7dp"
       
android:right="7dp"
       
android:bottom="7dp" />
   
android:radius="8dp" />
如图:
android shape的使用详解以及常用效果(渐变色、分割线、边框、半透明阴影效果等)_第1张图片


2、白色边框、半透明效果
[html]  view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:shape="rectangle" >  
  4.     <corners android:radius="16dp" />  
  5.       
  6.     <solid android:color="#80065e8d" />  
  7.     <stroke  
  8.         android:dashGap="0dp"  
  9.         android:width="4dp"  
  10.         android:color="@android:color/white" />  
  11. shape>  

如图: android shape的使用详解以及常用效果(渐变色、分割线、边框、半透明阴影效果等)_第2张图片    android shape的使用详解以及常用效果(渐变色、分割线、边框、半透明阴影效果等)_第3张图片

3、分割线效果:
[html]  view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:shape="line" >  
  4.     <stroke  
  5.         android:width="4dp"  
  6.         android:color="@android:color/black" />  
  7. shape>  


如果: android shape的使用详解以及常用效果(渐变色、分割线、边框、半透明阴影效果等)_第4张图片

4、单边屈角效果 [html]  view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <shape android:shape="rectangle" xmlns:android="http://schemas.android.com/apk/res/android">  
  3.   
  4.     <corners   
  5.         android:topLeftRadius="5dp"  
  6.         android:topRightRadius="5dp"  
  7.         android:bottomLeftRadius="30dp"  
  8.         android:bottomRightRadius="30dp"/>  
  9.   
  10.       
  11.     <solid android:color="#ff065e8d" />  
  12.   
  13.     <stroke  
  14.         android:dashGap="0dp"  
  15.         android:width="4dp"  
  16.         android:color="@android:color/white" />  
  17.   
  18. shape>  

如图: android shape的使用详解以及常用效果(渐变色、分割线、边框、半透明阴影效果等)_第5张图片

另:附上一份颜色进制图,需要的可以查阅: http://blog.sina.com.cn/s/blog_684a1d160100umuq.html
转载:Rflyee_大飞: http://blog.csdn.net/rflyee/article/details/20785495

更多相关文章

  1. Android ViewPager+Fragment 实现画廊效果(一屏多Fragment)
  2. android Animation动画效果基础
  3. Android进阶:实现android系统自带查看照片动画效果 类似Gallery手
  4. Android 滑动效果进阶篇(六)—— 倒影效果
  5. 三种方式实现自定义圆形页面加载中效果的进度条
  6. Android ListView项收缩效果

随机推荐

  1. 用Eclipse开发第一个Android应用程序Hell
  2. 如何让Android中的控件显示居中?
  3. [置顶] Android(安卓)《手机卫士》随听笔
  4. 如何在Windows上安装Android(安卓)SDK /
  5. Android学习之 UI效果
  6. android的属性
  7. 慎重升级Android(安卓)SDK Tools 至 r20
  8. Android(安卓)Native C development (2)
  9. android 利用ksoap2方式连接webservice
  10. android与unity交互