12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android">
- <!-- 设置边框宽度 -->
- <stroke android:width="1dp" android:color="#F0F0F0"/>
- <!-- 四个角的弧度 -->
- <corners
- android:bottomLeftRadius="50dp"
- android:bottomRightRadius="50dp"
- android:topLeftRadius="50dp"
- android:topRightRadius="50dp" />
- <!-- padding:TextView里面的文字与TextView边界的间隔 -->
- <padding
- android:bottom="5dp"
- android:left="10dp"
- android:right="10dp"
- android:top="5dp" />
- <!-- <size android:width="100dp" android:height="45dp"/> -->
- </shape>
|