码迷,mamicode.com
首页 > 移动开发 > 详细

android 使用xml为背景添加渐变,描边,圆角的效果

时间:2014-08-08 04:18:35      阅读:363      评论:0      收藏:0      [点我收藏+]

标签:android   http   color   使用   io   art   ar   res   

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

<solid
android:color="#40E0D0"/>
<!-- 渐变 -->
<gradient
android:startColor="#E2C13F"
android:endColor="#C6E2FF"
android:angle="270"/>
<!-- 圆角 -->
<corners
android:radius="10dp"/>
<!-- 描边 -->
<stroke
android:width="2dp"
android:color="#dcdcdc"/>
</shape>

 

    

<!-- 圆角 android:radius为角的弧度,值越大角越圆-->

<!--若想分别实现四个角圆角弧度 -->

<corners 

       android:topRightRadius="20dp"    右上角 

       android:bottomLeftRadius="20dp"    右下角 

       android:topLeftRadius="1dp"    左上角 

       android:bottomRightRadius="0dp"    左下角 

/> 

 

android 使用xml为背景添加渐变,描边,圆角的效果,布布扣,bubuko.com

android 使用xml为背景添加渐变,描边,圆角的效果

标签:android   http   color   使用   io   art   ar   res   

原文地址:http://www.cnblogs.com/Hellcxs/p/3898502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!