赞
踩
button在项目的界面中非常常用,为了界面的美观,我们常常会选用圆角的button,在iOS中按钮的样式可以选择,andriod中需要自己定义,查询了几个大牛的blog,也自己试了下,发现可以实现,现在写出来跟大家分享一下
首先要自定义一个XML文件的button
代码如下:
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
- <!-- 填充的颜色 -->
-
- <solid android:color="#00FF00" />
-
- <!-- 设置按钮的四个角为弧形 -->
-
- <!-- android:radius 弧形的半径 -->
-
- <corners android:radius="30dip" />
-
-
-
- <!-- padding:Button里面的文字与Button边界的间隔 -->
-
- <padding
-
- android:left="10dp"
-
- android:top="10dp"
-
- android:right="10dp"
-
- android:bottom="10dp"
-
- />
-
-
- </shape>
下面只需在布局文件中引用就可以了:
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
-
- <Button
- android:id="@+id/button1"
- android:layout_marginTop="100dp"
- android:layout_marginLeft="50dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@drawable/shape"
- android:text="Button" />
-
- </LinearLayout>
效果图如下
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。