用xml文件设置ImageButton按下、弹起加载不同的图片 实现

前端之家收集整理的这篇文章主要介绍了用xml文件设置ImageButton按下、弹起加载不同的图片 实现前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

java部分的代码就不贴了,只上xml文件

方法

1,在drawable里放三幅图片,分别是获得焦点的图片、获得焦点并按下、失去焦点并按下、自然状态(也就是失去焦点,并且没有按下)。这里你准备三个照片就中。

2,在drawable文件夹下新建个imagebutton.xml文件,里面的内容为:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_focused="true"
android:state_pressed="false"
android:drawable="@drawable/snake"/>
<item
android:state_focused="true"
android:state_pressed="true"
android:drawable="@drawable/solitaire"/>
<item www.2cto.com
android:state_focused="false"
android:state_pressed="true"
android:drawable="@drawable/solitaire"/>
<item
android:drawable="@drawable/tunes"></item>
</selector>
3,在布局文件里引用这个xml文件

<ImageButton android:id="@+id/imgButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/image_button"

原文链接:https://www.f2er.com/xml/299084.html

猜你在找的XML相关文章