andoid点击按钮(ImageButton)时改变按钮的背景图片 SelectorDemo

andoid点击按钮(ImageButton)时改变按钮的背景图片 SelectorDemo

博客分类:  android
android selector 改变按钮背景图片

 

 主要是用到selector这个属性!

 

1. android项目中,在res文件夹下建一个drawable文件夹

 

button_selector.xml

Java代码   收藏代码
  1. "1.0" encoding="utf-8"?>  
  2. "http://schemas.android.com/apk/res/android">  
  3.     "true"  
  4.         android:drawable="@drawable/button_pressed" />  
  5.     "false"  
  6.         android:drawable="@drawable/button"/>  
  7.   

 指定好按下时的图片 和 未按下时的图片

 

2. 将button_selector.xml放到drawable文件夹下

 

main.xml

Java代码   收藏代码
  1. "1.0" encoding="utf-8"?>  
  2. "http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     
  8.         android:id="@+id/imageButton1"  
  9.         android:layout_width="wrap_content"  
  10.         android:layout_height="wrap_content"  
  11.         android:src="@drawable/ic_launcher"  
  12.         android:background="@drawable/button_selector" />  
  13.   
  14.   

 这样所指定的ImageButton当点击的时候就会改变背景图片了

你可能感兴趣的:(android)