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

Android 边框圆角

时间:2015-10-09 12:17:33      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

RelativeLayout 圆角实现:
 drawable目录下面定义shape的xml文件:
mall_header_rel_bg.xml
  1. <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android" >
        <solid android:color="@color/white" />
        <corners
            android:bottomLeftRadius="5dp"
            android:bottomRightRadius="5dp"
            android:topLeftRadius="5dp"
            android:topRightRadius="5dp" />
    </shape>
  2. 代码里面通过如下代码引用
  1. android:background="@drawable/mall_header_rel_bg"
solid定义颜色,corners定义边角弧度,值越大,弧度越大,值越小,弧度越小
 

Android 边框圆角

标签:

原文地址:http://www.cnblogs.com/androidsuperman/p/4863437.html

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