android 利用selector设置ImageButton不同状态下的背景图片

本文出自:http://blog.csdn.net/wuxianglong/article/details/6581298

在Android中,控件Button和ImageButton一般有三种状态:常态(normal)、点击状态(pressed)、聚焦状态(focused)。很多时候,我们为了提高用户的体验常常为Button以及ImageButton的不同状态设置不同的背景图片,下面介绍一种利用selector设置Button和ImageButton不同状态下的背景图片的方法。

具体步骤如下:

一、在res/drawable文件下创建selector.xml,示例代码如下:

  1. <spanstyle="font-size:16px;"><?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/title_button_back">
  6. </item>
  7. <item
  8. android:state_pressed="true"
  9. android:drawable="@drawable/title_button_back_h">
  10. </item>
  11. <item
  12. android:state_window_focused="false"
  13. android:drawable="@drawable/title_button_back">
  14. </item>
  15. </selector></span>

二、编写布局文件,为布局文件中的ImageButton设置selector,示例代码如下:

  1. <spanstyle="font-size:16px;"><?xmlversion="1.0"encoding="utf-8"?>
  2. <RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_height="wrap_content"
  4. android:layout_width="fill_parent">
  5. <ImageButton
  6. android:id="@+id/title_IB"
  7. android:layout_height="wrap_content"
  8. android:layout_width="wrap_content"
  9. android:background="#00000000"
  10. android:layout_marginRight="4dp"
  11. android:layout_centerVertical="true"
  12. android:src="@drawable/selector">
  13. </ImageButton>
  14. </RelativeLayout></span>

到此就为ImageButton的不同状态设置了不同的背景图片。


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值