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

Android 圆角View设置 圆角边框

时间:2017-03-30 10:44:30      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:white   androi   圆角边框   tom   str   gray   android   blog   背景   

圆角的Veiw   XML

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/gray_white" />   背景颜色
    <corners android:radius="5dp" />              圆角大小
</shape>

随意定义某个角是圆角加边框

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/white" />    
    <stroke
        android:width="1dp"
        android:color="@color/pinkishGrey"></stroke>   边框
    <corners android:bottomLeftRadius="15dp"       左下圆角
        android:topLeftRadius="15dp"/>                   左上圆角
</shape>

  

Android 圆角View设置 圆角边框

标签:white   androi   圆角边框   tom   str   gray   android   blog   背景   

原文地址:http://www.cnblogs.com/teddy-yan/p/6644390.html

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