欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

android 按钮选中效果 博客分类: android  

程序员文章站 2024-03-14 22:22:29
...

实现方式有两种:

一、代码中实现:

		imgbtnSetup.setOnTouchListener(
				new View.OnTouchListener(){
					@Override
					public boolean onTouch(View v, MotionEvent event) {
						if(event.getAction() == MotionEvent.ACTION_DOWN){   
	                              //更改为按下时的背景图片     
	                              v.setBackgroundResource(R.drawable.btn_setup_hover);     
	                      }else if(event.getAction() == MotionEvent.ACTION_UP){     
	                              //改为抬起时的图片     
	                              v.setBackgroundResource(R.drawable.btn_setup);     
	                      }
						return false;
					}
				});

 

二、xml布局实现:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item         
          android:state_pressed="false"
          android:drawable="@drawable/button_add" />
    <item         
          android:state_pressed="true"
          android:drawable="@drawable/button_add_pressed" />
    <item         
          android:state_focused="true"
          android:drawable="@drawable/button_add_pressed" />
    <item         
          android:drawable="@drawable/button_add" />
</selector>

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

 使用的时候

<ImageButton     
        android:layout_width="fill_parent"     
        android:layout_height="wrap_content"    
        android:background="@drawable/button_add_x" />