有两种方法。

第一种:
该方法通过onTouch来实现

[java] view plain copy
  1. btn3=(ImageButton)findViewById(R.id.ImageButton03);
  2. btn3.setOnTouchListener(touchListener3);
  3. View.OnTouchListenertouchListener=newOnTouchListener(){
  4. @Override
  5. publicbooleanonTouch(Viewv,MotionEventevent){
  6. ImageButtonimageBtn=(ImageButton)v;
  7. if(event.getAction()==MotionEvent.ACTION_DOWN){
  8. //更改为按下时的背景图片
  9. imageBtn.setImageResource(R.drawable.pressed);
  10. }elseif(event.getAction()==MotionEvent.ACTION_UP){
  11. //改为抬起时的图片
  12. imageBtn.setImageResource(R.drawable.released);
  13. }
  14. returnfalse;
  15. }
  16. };

第二种:
通过XML来实现:

将下面的文件放在drawable目录下面。命名为button_add_x.xml

[html] view plain copy
  1. <?xmlversion="1.0"encoding="UTF-8"?>
  2. <selectorxmlns:android="http://schemas.android.com/apk/res/android">
  3. <item
  4. android:state_pressed="false"
  5. android:drawable="@drawable/button_add"/>
  6. <item
  7. android:state_pressed="true"
  8. android:drawable="@drawable/button_add_pressed"/>
  9. <item
  10. android:state_focused="true"
  11. android:drawable="@drawable/button_add_pressed"/>
  12. <item
  13. android:drawable="@drawable/button_add"/>
  14. </selector>
使用的时候:

[html] view plain copy
  1. <ImageButton
  2. android:id="@+id/ImageButton"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:background="#00000000"
  6. android:src="@drawable/button_add_x"
  7. >
  8. </ImageButton>

下面详细介绍下几种触发属性:

1)android:state_pressed

Boolean. "true" if this item should be used when the object is pressed (such as when a button is touched/clicked); "false" if this item should be used in the default, non-pressed state.

如果是true,当被点击时显示该图片,如果是false没被按下时显示默认。

2)android:state_focused

Boolean. "true" if this item should be used when the object is focused (such as when a button is highlighted using the trackball/d-pad); "false" if this item should be used in the default, non-focused state.

true,获得焦点时显示;false,没获得焦点显示默认。

3)android:state_selected

Boolean. "true" if this item should be used when the object is selected (such as when a tab is opened); "false" if this item should be used when the object is not selected.

true,当被选择时显示该图片;false,当未被选择时显示该图片。

4)android:state_checkable

Boolean. "true" if this item should be used when the object is checkable; "false" if this item should be used when the object is not checkable. (Only useful if the object can transition between a checkable and non-checkable widget.)

true,当CheckBox能使用时显示该图片;false,当CheckBox不能使用时显示该图片。

5)android:state_checked

Boolean. "true" if this item should be used when the object is checked; "false" if it should be used when the object is un-checked.

true,当CheckBox选中时显示该图片;false,当CheckBox为选中时显示该图片。

6)android:state_enabled

Boolean. "true" if this item should be used when the object is enabled (capable of receiving touch/click events); "false" if it should be used when the object is disabled.

true,当该组件能使用时显示该图片;false,当该组件不能使用时显示该图片。

7)android:state_window_focused

Boolean. "true" if this item should be used when the application window has focus (the application is in the foreground), "false" if this item should be used when the application window does not have focus (for example, if the notification shade is pulled down or a dialog appears).

true,当此activity获得焦点在最前面时显示该图片;false,当没在最前面时显示该图片。

更多相关文章

  1. android 设置 TextEdit 组件滚动条自动滚动且在末尾追加内容
  2. 下载显示网路图片的例子
  3. Android如何实现图片轮播
  4. 图片拖动功能实现
  5. Android平台上实现图片的缩放,圆角,倒影效果
  6. android读取图片
  7. Android 使用Glide实现圆形和圆角图片
  8. 2012-7-20 android 图片叠加效果——两种方法

随机推荐

  1. Android相机开发实战
  2. Android(安卓)之 悬浮窗
  3. Android内存优化总结&实践
  4. 做推送,怎么能不了解推送的 4 种消息形式
  5. 2017-2020历年字节跳动Android面试真题解
  6. 基于Android的温湿度采集系统
  7. Android(安卓)NDK之旅-OpenGL 初探
  8. WPS Office移动版(Android)限时免费,送小
  9. Android(安卓)将自己的Launcher设置为默
  10. Android(安卓)自定义数字键盘(一)