打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
Android利用selector设置按钮不同状态下的背景图片

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

具体步骤如下:

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

01<?xml version="1.0" encoding="utf-8"?>
02<selector xmlns:android="http://schemas.android.com/apk/res/android">
03    <item
04        android:state_pressed="false"
05        android:drawable="@drawable/title_button_back">
06    </item>
07    <item
08        android:state_pressed="true"
09        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>

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

01<?xml version="1.0" encoding="utf-8"?> 
02<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
03    android:layout_height="wrap_content" 
04    android:layout_width="fill_parent"
05    <ImageButton 
06        android:id="@+id/title_IB" ;
07        android:layout_height="wrap_content" 
08        android:layout_width="wrap_content" 
09
10        android:layout_marginRight="4dp" 
11        android:layout_centerVertical="true" 
12        android:background ="@drawable/selector"> ;
13    </ImageButton
14</RelativeLayout>

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

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
定义xml为drawable文件并根据状态改变显示的图片资源
android如何创建一个透明的ImageButton
向android 的状态栏中加入快捷按钮(home,back,menu等等)的方法(续) ...
android 根据button不同状态显示不同(背景)图片
Android平台Button控件如何实现按下效果(变换风格)
android 中ImageButton按下改变背景图片的效果
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服