赞
踩
点击或选中ListView中的一项后,使item背景改变,失去焦点同样显示选中的背景,重新选中另外一项才刷新;
在Adapter中配置:
配置好了之后,下面就是应用:
-------------------------------------------------------------------------------------
监听view获得焦点或按下等状态的背景,可以用selector;
在res--drawable中配置样式文件,如button_style.xml
用在Listview,gridview中
<ListView
......
android:listSelector="@drawable/button_style"
......> </ListView>
用于其他View,如Button,textview等
android:background="@drawable/button_style"
原文链接:http://blog.csdn.net/only_tan/article/details/40110993
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。