android:列表视图单选按钮中的单个选项选择?

发布于 2024-11-08 17:52:02 字数 182 浏览 0 评论 0原文

我有一个列表视图,其中包含一个单选按钮作为其项目,我的要求是在列表视图中仅选择单个单选按钮,列表视图单选按钮项目是动态填充的,是否有任何选项可以一次选择单个单选按钮
我添加了以下属性,但没有更改

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

苄①跕圉湢 2024-11-15 17:52:02

干得好。

listView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);

它将把列表视图的选择模式更改为单一。

Here you go.

listView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);

It will change your listview's selection mode to single.

一口甜 2024-11-15 17:52:02

我认为 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 :(

月野兔 2024-11-15 17:52:02

请遵循此链接..< /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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文