Android开发 设置控件边角半圆

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >  
    <corners android:radius="30dip" /> 
    <solid android:color="#ff3290f0" />  
</shape>

在drawable文件夹下建立该xm文件,radius设置半圆的弧度,color是控件的背景颜色。

你可能感兴趣的:(Android开发 设置控件边角半圆)