1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| <?xml version="1.0" encoding="utf-8"?>
|
| <shape xmlns:android="http://schemas.android.com/apk/res/android">
| <!-- <gradient android:startColor="#12B2B3" android:endColor="#56E0E0" android:angle="0" /><!–背景颜色渐变 angle为渐变角度–>-->
| <solid android:color="@color/colorGreen" /><!-- 背景填充颜色 -->
| <stroke android:width="1dp" android:color="#FFE0E0E0" /><!-- 描边,边框宽度、颜色 -->
| <corners android:radius="12dp" /><!-- 边角圆弧的半径 -->
|
| <padding
| android:left="48dp"
| android:top="15dp"
| android:right="48dp"
| android:bottom="15dp"
| /><!-- 四周留出来的空白 -->
| </shape>
|
|