Android学习——Button填充颜色及实现圆角

少年乘勇气,百战过乌孙。这篇文章主要讲述Android学习——Button填充颜色及实现圆角相关的知识,希望能为你提供帮助。
  在drawable下新建文件夹bt_shape.xml,如下:

1 < ?xml version="1.0" encoding="utf-8"?> 2 < shape xmlns:android="http://schemas.android.com/apk/res/android"> 3 4android:shape="rectangle"> //shape用于定义形状,有四种形状(矩形rectangle| 椭圆oval  | 直线line  | 圆形ring) 5< solid android:color="#00f"/> //solid用于设置填充形状的颜色 6< corners//corners用于创建圆角(只用于形状是矩形) 7android:topLeftRadius="8dip" 8android:topRightRadius="8dip" 9android:bottomLeftRadius="8dip" 10android:bottomRightRadius="8dip"/> 11 < /shape>

【Android学习——Button填充颜色及实现圆角】在activity_main.xml下使用:
1< Button 2android:id="@+id/button" 3android:layout_width="match_parent" 4android:layout_height="wrap_content" 5android:background="@drawable/bt_shape"//引用 6android:text="确认" 7android:textColor="#fff" 8/>

实现效果如下:
Android学习——Button填充颜色及实现圆角

文章图片


    推荐阅读