当前位置:   article > 正文

【Android开发】自定义圆角button样式

【Android开发】自定义圆角button样式

【Android开发】自定义圆角button样式

结果图

样图

步骤

  1. 在res/drawable中新建一个drawable文件,自定义命名为btu.xml;
  2. 在btu.xml中设置圆角大小和填充颜色,代码如下:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<!--圆角的半径-->
    <corners android:radius="5dp"/>
<!--    填充颜色-->
    <solid android:color="@color/colorAccent"/>
</shape>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  1. 在需要按钮的布局文件中新建一个button,设置其他属性,在background中选择btu,代码如下:
<Button
        android:id="@+id/edit_commit"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:layout_marginRight="20dp"
        android:layout_marginTop="10dp"
        android:background="@drawable/btu_normal"
        android:text="点击提交" />
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/465057?site
推荐阅读
相关标签
  

闽ICP备14008679号