码迷,mamicode.com
首页 > 其他好文 > 详细

简单又好看的按钮,扁平化按钮。

时间:2014-12-13 15:04:06      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   io   ar   color   使用   sp   

 

首先编写 button.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
    <!-- 点击背景 -->
    <item android:state_pressed="true" >
        <shape >
            <!--色值-->
            <solid android:color="#d45429"/>
            <!--圆角-->
            <corners android:radius="10dp"/>
        </shape>
    </item>
    <!--默认背景 -->
     <item>
        <shape >
            <solid android:color="#d2aa3e"/>
            <corners android:radius="5dp"/>
        </shape>
    </item>
</selector>

 

然后使用方法如下:

设置button的背景

<Button  
            android:id="@+id/one"  
            android:layout_width="wrap_content"  
            android:layout_height="wrap_content"  
            android:layout_marginTop="10dp"  
            android:background="@drawable/button"  
            android:paddingBottom="8dp"  
            android:paddingLeft="25dp"  
            android:paddingRight="25dp"  
            android:paddingTop="8dp"  
            android:text="我要赠送"  
            android:textColor="@color/White"  
            android:textSize="18sp" />  

 

简单又好看的按钮,扁平化按钮。

标签:android   style   blog   http   io   ar   color   使用   sp   

原文地址:http://www.cnblogs.com/li-fei/p/4161275.html

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