设置有弧度的边框背景
在drawable文件夹下创建一个xml文件,写下如下代码:
1 <?xml version="1.0" encoding="utf-8"?> 2 <shape xmlns:android="http://schemas.android.com/apk/res/android"> 3 4 <!--弯曲的弧度--> 5 <corners android:radius="15dp"/> 6 <!--背景色--> 7 <solid android:color="@color/white"/> 8 <!--s设置边框的宽度和颜色--> 9 <stroke 10 android:width="1dp" 11 android:color="#999999" /> 12 <size android:height="1sp" /> 13 </shape>
效果如下: