码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2017-07-13 22:51:36      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:round   直线   oval   效果   .com   学习   使用   bsp   style   

 在drawable下新建文件夹bt_shape.xml,如下:

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

在activity_main.xml下使用:

1     <Button
2         android:id="@+id/button"
3         android:layout_width="match_parent"
4         android:layout_height="wrap_content"
5         android:background="@drawable/bt_shape"     //引用
6         android:text="确认"
7         android:textColor="#fff"
8         />

实现效果如下:

技术分享

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

标签:round   直线   oval   效果   .com   学习   使用   bsp   style   

原文地址:http://www.cnblogs.com/cxq1126/p/7163369.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!