标签:
drawable文件夹中 需要创建的文件例如: my_select.xml,代码如下:
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android" > <item android:drawable="@drawable/my_checked" android:state_enabled="true" android:state_selected="true"/> <item android:drawable="@drawable/my_def"/> </selector>
my_checked: 选中效果图
my_def: 未选中效果图
需要注意的地方:
android:state_selected="true"
一定要是state_selected属性
layout文件夹中的Item布局文件中:Item布局文件是适配器Adapter中的子文件
在你需要选中的控件中添加一下代码
android:background="@drawable/course_select" android:descendantFocusability="blocksDescendants"然后在你的适配器中引用该布局文件就好了
在不使用notifyDataSetChanged()方法,怎样选中Item中的内容
标签:
原文地址:http://my.oschina.net/u/942298/blog/511077