假设我有一个图像网格,你如何在批处理模式下选择图像视图或位图?您如何进行“全选”?
问问题
235 次
1 回答
2
不要在 GridView 中添加 ImageView,而是添加由 ImageView 和 Checkbox 组成的自定义布局。
You can add a OnCheckedChangeListener to the Checkbox, so that whenever an image selected/deselected, you can add/remove the id of that image to an ArrayList.
或者,当您选择一个按钮以对所选项目执行操作时,您可以遍历 GridView 并检查复选框是否被选中。
如果要实现“全选”功能,请遍历 GridView 并将 CheckBox 状态设置为选中。
于 2012-10-05T04:16:26.367 回答