button 设置圆角

Posted lgz0921

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了button 设置圆角相关的知识,希望对你有一定的参考价值。

直接上代码:

先写一个shape,放到drawable文件件下面

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <corners android:radius="22dp"/>
    <solid android:color="自己想要的颜色"></solid>
</shape>

然后在button,设置background属性即可

    <Button
        android:id="@+id/button_button"
        android:layout_width="22dp"
        android:layout_height="44dp"
        android:background="@drawable/上面那个shape的文件名字"
        android:text="*****"
        android:textColor="@color/white"
        android:layout_centerHorizontal="true"/>

以上是关于button 设置圆角的主要内容,如果未能解决你的问题,请参考以下文章

Swift开发教程--设置圆角Button和圆角边框TextView

给button设置圆角的方法

给Button添加特定个数的圆角

Android 自定义Button 圆角大小可设置+点击变暗效果

html5中button怎么把边框怎么弄成圆角?

Button UIImageVIew UIView UILabel 等控件设置一个圆角