欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android自定义Button

程序员文章站 2024-03-26 08:08:24
...

1.准备两张图片

(图1)btn_orderres_01

Android自定义Button

(图2)btn_orderres_02

Android自定义Button

2.在drawable文件夹中书写Button样式,文件名:button_Style.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:state_focused="true" android:drawable="@drawable/btn_orderres_02"></item>
    <item android:state_pressed="true" android:drawable="@drawable/btn_orderres_02"></item>
    <item android:drawable="@drawable/btn_orderres_01"></item>
</selector>

 3.在布局文件中,设置Button的BackGround属性

<Button 
        android:background="@drawable/button_style"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/main_textViewTop"
        />

 

转载于:https://my.oschina.net/suxiaodai/blog/86738