当前位置:   article > 正文

Android实现圆角Button_android 圆角button

android 圆角button

Android实现圆角Button

在drawable文件夹下新建btn_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="#ffffff"/>
      <corners
          android:topLeftRadius="8dip"
          android:topRightRadius="8dip           
          android:bottomLeftRadius="8dip"
          android:bottomRightRadius="8dip"/>
 </shape>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

先解释一下上面的代码:
1.shape用于定义形状,有四种形状(矩形rectangle| 椭圆oval | 直线line | 圆形ring)。
2.solid用于设置填充形状的颜色。
3.corners用于创建圆角(只用于形状是矩形)。
在这里插入图片描述
topLeftRadius、topRightRadius、bottomLeftRadius、bottomRightRadius分别设置左上,右上,左下,右下圆角的半径。

使用方法:
  • 1
 android:background="@drawable/btn_shape"
  • 1
   <Button
         android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         android:id="@+id/button"
         android:background="@drawable/btn_shape"
        />
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/465046
推荐阅读
相关标签
  

闽ICP备14008679号