兔子--背景的圆角设置

来源:互联网 发布:找不到男朋友 知乎 编辑:程序博客网 时间:2024/05/16 10:51
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

//设置颜色
    <solid android:color="#ee6c6c6c" />

//设置圆角
    <corners
        android:bottomLeftRadius="10dp"
        android:bottomRightRadius="10dp"
        android:topLeftRadius="10dp"
        android:topRightRadius="10dp" />


</shape>
0 0