android实现按键效果

有两种方法。

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

  1. btn3 = (ImageButton) findViewById(R.id.ImageButton03);    
  2. btn3.setOnTouchListener(touchListener3);    
  3. View.OnTouchListener touchListener = new OnTouchListener() {    
  4. @Override    
  5. public boolean onTouch(View v, MotionEvent event) {    
  6. ImageButton imageBtn = (ImageButton) v;    
  7. if(event.getAction() == MotionEvent.ACTION_DOWN){    
  8. //更改为按下时的背景图片    
  9. imageBtn .setImageResource(R.drawable.pressed);    
  10. }else if(event.getAction() == MotionEvent.ACTION_UP){    
  11. //改为抬起时的图片    
  12. imageBtn .setImageResource(R.drawable.released);    
  13. }    
  14. return false;    
  15. }    
  16. };    

第二种:
通过XML来实现:

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

  1. <?xml version="1.0" encoding="UTF-8"?>    
  2. <selector xmlns: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>  
使用的时候:

  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,当没在最前面时显示该图片。

posted @ 2013-02-27 17:56  vincent_hv  阅读(456)  评论(0编辑  收藏  举报