首页 > 学院 > 开发设计 > 正文

关于ListVie设置获得焦点或按下的状态颜色

2019-11-07 23:10:43
字体:
来源:转载
供稿:网友

ListView 改变获得焦点或者按下的状态颜色可以在listselector 属性中设置。 如下:

<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_PRessed="true" android:drawable="@drawable/btn_bg_fc" /><!--按下时的背景--> <item android:state_focused="true" android:drawable="@drawable/btn_bg_fc" /><!--获得焦点时的背景--> <item android:state_selected="true" android:drawable="@drawable/btn_bg_fc" /><!--选中状态的背景--> <item android:drawable="@drawable/btn_bg" /> <!--默认背景--></selector><ListView...... android:listSelector="@drawable/button_style"....../>

同样也适用于GrideView.


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表