需要一个xml文件
在 drawable
文件夹中新建一个xml文件,例:ss.xml
内容:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="4dip"/>
<solid android:color="#1c8af9"/>
<stroke
android:width="1dp"
android:color="#1c8af9" />
<!-- dashWidth指的是边线的长度 dashGap 指的是每条线之间的间距 width指的是边线的宽度 -->
<!--<stroke
android:width="2dp"
android:color="#00AAEE"
android:dashGap="2dp"
android:dashWidth="10dp" />-->
*/
</shape>
corners
圆角
solid
填充色
stroke
边框
网友评论