Android Selector的使用

应用场景:

主要针对Button/ImageButtom控件来使用,在 Android中,控件Button和ImageButton一般有三种状态:常态(normal)、点击状态(pressed)、聚焦状态 (focused)。了提高用户的体验常常为Button以及ImageButton的不同状态设置不同的背景图片。

使用方式:

第一步:在工程的res目录下新建drawable文件夹(若已存在无需新建),在drawable文件夹下新建Android XML File文件selector00.xml。
第二步:selector00.xml中填写文件内容,相关各个属性的作用与可选内容介绍如下。
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
	<item
		android:state_pressed="false"
		android:drawable="@drawable/title_button_back">
 	</item>
	<item
		android:state_pressed="true"
		android:drawable="@drawable/title_button_back_h">
 	</item>
	<item
		android:state_window_focused="false"
		android:drawable="@drawable/title_button_back">
 	</item>
</selector>
第三步:编写布局文件,为布局文件中的ImageButton设置selector,示例代码如下:
<?xml version="1.0" encoding="utf-8"?>  
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    android:layout_height="wrap_content"  
    android:layout_width="fill_parent">  
    <ImageButton  
        android:id="@+id/title_IB" ; 
        android:layout_height="wrap_content"  
        android:layout_width="wrap_content"  
        android:background="#00000000"  
        android:layout_marginRight="4dp"  
        android:layout_centerVertical="true"  
        android:src="@drawable/selector"> ; 
    </ImageButton>  
</RelativeLayout>


你可能感兴趣的:(Android Selector的使用)