陈斌彬的技术博客

Stay foolish,stay hungry

Android 设置View 圆角

在drawable文件下 创建一个布局文件corners_bg.xml

<?xml version="1.0" encoding="utf-8"?>  
<shape xmlns:android="http://schemas.android.com/apk/res/android">    
    <solid android:color="#000000" /> //圆角View的背景颜色   
    <corners android:topLeftRadius="10dp"   //上左圆角
                android:topRightRadius="10dp"    //上右圆角
                android:bottomRightRadius="10dp"   
                android:bottomLeftRadius="10dp"/>    
</shape>  

一般,四个圆角都是一样的,可以简单的写为:

<?xml version="1.0" encoding="utf-8"?>  
<shape xmlns:android="http://schemas.android.com/apk/res/android">    
    <solid android:color="#000000" />    
    <corners android:radius="5dp"/> 
</shape>  
    调用很简单,只需要在用圆角的View中:

android:background="@drawable/corners_bg"