<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <!-- 設置按鈕的左上角和右下角爲弧形 --> <stroke android:color="@color/colorNewRed" android:width="1dp" /> <solid android:color="@color/colorNewRed" /> <corners android:topLeftRadius="15dip" android:bottomRightRadius="15dip" /> </shape>
相關屬性:
corners:圓角弧度
solid:裏面背景
stroke:外框背景
padding:文字與邊框的距離
shape:背景總體類型,取值有 rectangle(矩形) oval(橢圓形) line(線性) ring(環形)