[Android基础系列]轻松实现按钮的鼠标悬停背景切换
时间:2010-11-09 来源:Springfield
selector.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_window_focused="false" android:drawable="@drawable/t3"/> <item android:state_focused="true" android:drawable="@drawable/t1"/> <item android:state_pressed="true" android:drawable="@drawable/t2"/> <item android:drawable="@drawable/t3"/> </selector>
正如上面的资源文件所描述的,我们在这里定义了三种行为各自的图片资源,接下来,我们只需要在相应的按钮中,将背景资源指定为drawable/selector,就完成我们需要做的一切了~
<ImageButton android:layout_width="100px" android:layout_height="50px" android:src="@drawable/selector" />
这一切就这么简单,不用写任何的逻辑代码,android开发是不是很方便呢~,下面是效果图:
默认:
点击:
选中:
相关阅读 更多 +