赞
踩
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.shape用于定义形状,有四种形状(矩形rectangle| 椭圆oval | 直线line | 圆形ring)。
2.solid用于设置填充形状的颜色。
3.corners用于创建圆角(只用于形状是矩形)。
topLeftRadius、topRightRadius、bottomLeftRadius、bottomRightRadius分别设置左上,右上,左下,右下圆角的半径。
使用方法:
android:background="@drawable/btn_shape"
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button"
android:background="@drawable/btn_shape"
/>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。