Android Listview,具有自定义多选功能的光标适配器
我正在构建一个联系人列表,用户可以在其中选择多个联系人。 目前,Android 布局仅提供带有单个文本视图和一个复选框的多重选择,我想要做的是拥有名称和号码以及一个复选框(两个文本视图和一个复选框)。当我使用自定义布局实现此功能时,并且当用户单击列表时,复选框不会被选中。我尝试将复选框绑定到列表视图,但没有成功。任何帮助将不胜感激。
I'm building a list of contacts, where the user can select more than one one contact.
Currently the android layouts only provide a multiple select with a single textview and a checkbox, what I want to do is have the name and number and a checkbox (two textviews and a checkbox). When I implement this with a custom layout, and when the user clicks on the list, the check boxes don't get ticked. I tried to bind the checkbox to the listview but it didnt work. Any help would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在类似的 stackoverflow 问题中找到了解决此类问题的通用方法( 多选列表使用自定义视图?):
http:// /www.marvinlabs.com/2010/10/custom-listview-ability-check-items/
I found a generic method to solve this kind of problem in a similar stackoverflow question ( Multiple choice list with custom view? ):
http://www.marvinlabs.com/2010/10/custom-listview-ability-check-items/
并在活动中
and in Activity