Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android學習----用xml文件設置ImageButton按下、彈起加載不同的圖片 實現

android學習----用xml文件設置ImageButton按下、彈起加載不同的圖片 實現

編輯:關於Android編程

java部分的代碼就不貼了,只上xml文件,

方法:

1,在drawable裡放三幅圖片,分別是獲得焦點的圖片、獲得焦點並按下、失去焦點並按下、自然狀態(也就是失去焦點,並且沒有按下)。這裡你准備三個照片就中。

2,在drawable文件夾下新建個imagebutton.xml文件,裡面的內容為:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:state_focused="true"
        android:state_pressed="false"
        android:drawable="@drawable/snake"/>
    <item
        android:state_focused="true"
        android:state_pressed="true"
        android:drawable="@drawable/solitaire"/>
    <item www.2cto.com
        android:state_focused="false"
        android:state_pressed="true"
        android:drawable="@drawable/solitaire"/>
    <item
        android:drawable="@drawable/tunes"></item>
</selector>
    3,在布局文件裡引用這個xml文件:

<ImageButton
    android:id="@+id/imgButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/image_button"
作者:yanzi1225627
 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved