来源:https://stackoverflow.com/questions/8337180/custom-single-choice-listview/12823457#12823457
1.在listview item里面设置
<RadioButton
android:id="@+id/radio1"
android:checked="false"
a...
分类:
其他好文 时间:
2015-04-18 14:37:42
阅读次数:
169
当我点击了一个item后,这个item的背景会一直变色下去,
刚开始使用state_selected,想着点击item后,选中后,他的背景就会改变,但发现并没有起作用,
之后经过谷歌,找到了实现该效果的方法,
我们应该用state_activated而不是state_selected这个方法,并且在xml给listview或者gridview设置他的属性android:choiceMode="singleChoice"
保证只有一个item被选中...
分类:
其他好文 时间:
2015-04-09 10:36:03
阅读次数:
134
《RadioButton与ListView的混合使用》一文中,我在适配器中用标记的方法实现了用户选择的操作,这次用ListView的单选模式来实现一下。ListView的默认状态下是没有选择行为的,把ListView的choiceMode设置为singleChoice,列表就可以实现单选(当然它也有多选模式,这个后面再研..
分类:
其他好文 时间:
2014-11-21 00:09:30
阅读次数:
261