?圆角Button
点击 app/src/main/res 找到 drawable 文件夹,右击->New->Drawable Resource File。
新建一个文件名为 round_corner 根元素为 shape 的 .xml 文件。
在这个文件里添加如下代码:
1 <?xml version="1.0" encoding="utf-8"?> 2 <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 android:shape="rectangle"> 4 5 <solid 6 android:color="#D52BD5"/> 7 <corners 8 android:radius="20dp"/> 9 10 </shape>
solrd : 填充
- color : 设置填充颜色
corners : 设置圆角
- radius : 设置四个角的弯曲度
topLeftRadius : 设置左上角的弯曲度
topRightRadius : 设置右上角的弯曲度
bottomLeftRadius : 设置左下角的弯曲度
bottomRightRadius :设置右下角的弯曲度
?展示效果