Android 如何设置圆角Button

Posted 彬sir哥

tags:

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

要了解android的shape就点击链接:Android中shape的使用

1.在res文件夹下的drawable文件夹下新建shape.xml文件

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >

    <!-- 填充的颜色 -->
    <solid android:color="#FF065E8D" />

    <!-- 设置button的四个角为弧形 -->
    <!-- android:radius 弧形的半径 -->
    <corners android:radius="15dip" />

    <!-- padding:Button里面的文字与Button边界的间隔 -->
<!--    <padding-->
<!--        android:bottom="10dp"-->
<!--        android:left="10dp"-->
<!--        android:right="10dp"-->
<!--        android:top="10dp" />-->
</shape>

2.在布局文件里调用

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/shape"
        android:text="圆角button"/>

测试结果如下:

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

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

Android studio利用shape实现不同样式的button(实现圆角的按钮)

android自定义控件,动态设置Button的样式

如何自定义android Button样式

Android 开发 圆角 Button 按钮 xml 实现

圆角Button