您好,登錄后才能下訂單哦!
Button按鈕圖片切換效果設置。
通常在工程中用到圖片按鈕點擊事件,大多都用ImageButton。在這里我們用
Button的點擊事件,在圖片的切換過程中不再通過setBackgroundResource()設置
點擊效果。而是通過.xml預先設置好切換效果。在這里我們習慣把該.xml文件放到drawable文件夾下。
代碼如下:
//xml文件 名稱這里為test_press.xml
1、 android:state_pressed="true" 為點擊后效果
2、 android:state_focused="true"
3、 最后一行 <item android:drawable="@drawable/ok"/>
是必不可少的,否則會引起布局混亂。另外該行的drawable其實就是
默認的顯示圖片。所以有了該行代碼,上面的2可以不用寫了。為了程序的
完整性,我們建議還是要寫上啦。
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/ok_press" android:state_pressed="true"/> <item android:drawable="@drawable/ok" android:state_focused="true"/> <item android:drawable="@drawable/ok"/> </selector>
//Button按鈕的設置
只需設置一步即可
android:background="@drawable/test_press"
<Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/test_press"/>
在主代碼中只需要正常使用Button的監聽器即可,至于點擊效果則會自動切換。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。