android:列表视图单选按钮中的单个选项选择?
我有一个列表视图,其中包含一个单选按钮作为其项目,我的要求是在列表视图中仅选择单个单选按钮,列表视图单选按钮项目是动态填充的,是否有任何选项可以一次选择单个单选按钮
我添加了以下属性,但没有更改
ListView.CHOICE_MODE_SINGLE
请帮助我
问候奥古斯丁
I have a list view which contains a radio button as its item,my Requirement is to select only single radio button in the listview ,The list view radio button item is dynamicaly populating is there any option to select single radio button at a time
i added following properties ,but no change
ListView.CHOICE_MODE_SINGLE
please help me
RegardsAugustine
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
干得好。
它将把列表视图的选择模式更改为单一。
Here you go.
It will change your listview's selection mode to single.
我认为 ListView.CHOICE_MODE_SINGLE 仅适用于行布局 android.R.layout.simple_list_item_single_choice (字符串和单选按钮)。
我找不到带有单选按钮的多列列表视图的任何示例。有带有复选框的示例,但复选框没有单一选择:(
I think that ListView.CHOICE_MODE_SINGLE is actual for row layout android.R.layout.simple_list_item_single_choice (string and radio button) only.
I can not find any sample for multicolumn list view with radio button. There are samples with check box, but check box have not SINGLE CHOICE :(
请遵循此链接..< /a>
此示例显示如何在列表上使用选择模式。这份清单是
在 CHOICE_MODE_SINGLE 模式下,这意味着项目的行为类似于
复选框。
follow this link..
This example shows how to use choice mode on a list. This list is
in CHOICE_MODE_SINGLE mode, which means the items behave like
checkboxes.