<pre name="code" class="html"><?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#02477F" />
<stroke android:width="1dp"
android:color="#02477F"/>
<corners
android:topLeftRadius="5dp"
android:bottomLeftRadius="5dp"
android:topRightRadius="1dp"
android:bottomRightRadius="1dp"
/>
</shape>
<!-- solid设置填充颜色,颜色值以#80开头表示透明
stroke stroke中的width设置边框宽度,stroke中的color设置边框的颜色
corners设置圆角 -->
自定义button背景(如果美工不给图片的话)
最新推荐文章于 2021-11-17 22:03:16 发布