Android零碎知识点——设置Button为圆形按钮
Posted 二木成林
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android零碎知识点——设置Button为圆形按钮相关的知识,希望对你有一定的参考价值。
在res/drawable文件夹下创建一个button_shape.xml文件,代码如下:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<corners android:radius="0dp" /> <!-- 设置圆角弧度 -->
<solid android:color="#FF7001" /> <!-- 设置背景颜色 -->
<size
android:width="40dp"
android:height="40dp" />
<stroke
android:width="0dp"
android:color="#fff" />
</shape>
接着就是在Button控件中通过android:background进行引用
android:background="@drawable/button_shape"
效果如下:
以上是关于Android零碎知识点——设置Button为圆形按钮的主要内容,如果未能解决你的问题,请参考以下文章