1. 程式人生 > >android 畫一個矩形shape背景

android 畫一個矩形shape背景

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid
        android:color="@color/red" />
    <!-- 邊緣線條顏色 -->
    <stroke
        android:width="1dp"
        android:color="@color/red" />
    <!-- 圓角的幅度 -->
    <corners
        android:topLeftRadius="@dimen/common20dp"
        android:topRightRadius="@dimen/common20dp"
        android:bottomLeftRadius="@dimen/common20dp"
        android:bottomRightRadius="5dip" />
</shape>

 

 

topLeftRadius 等引數是四個角的圓度