确定列表视图中的哪些复选框被选中

发布于 2024-11-06 02:15:20 字数 191 浏览 0 评论 0原文

我有一个列表视图,每行都有复选框。当我单击仅包含选中项目的按钮时,我想创建一个新的列表视图,但我不知道如何知道选择了哪些项目。

抱歉,但我无法输入我的 row.xml 代码...

I have a listview with checkbox in each row. I want to create a new listview when i click in a button with only the cheked items, but I don't know how to know which items are selected.

Sorry but i don't get to put my row.xml code...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

喜爱皱眉﹌ 2024-11-13 02:15:20

有几种方法可以获取已检查项目的 ID 或位置:

getCheckedItemPosition () - 返回
当前检查的 int
项目(仅适用于
SINGLE_CHOICE_MODE

 

getCheckedItemPositions () - 返回
当前检查的 int []
项目位置

位置

getCheckedItemIds()
- 返回一个long [],其中包含已检查项目的ID

There are few methods available to get the IDs or positions of the checked items:

getCheckedItemPosition () - returns
an int with the currently checked
item (only good for
SINGLE_CHOICE_MODE)

 

getCheckedItemPositions () - returns
an int [] with the currently checked
items positions

 

getCheckedItemIds ()
- returns a long [] containing the IDs of the checked items

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