如何给button控件添加描边填充背景和描边
Posted 轻烟散入五侯家
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何给button控件添加描边填充背景和描边相关的知识,希望对你有一定的参考价值。
1.buttom要设置为背景的xml文件如下round_corner_stroke_background.xml如下:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="15dp" />
<solid android:color="#FFFFFF" />
<stroke
android:width="2dp"
android:color="#000000" />
</shape>
以上是关于如何给button控件添加描边填充背景和描边的主要内容,如果未能解决你的问题,请参考以下文章