BlackBerry - 带有复选框和搜索条件的列表
我正在尝试显示带有复选框的数据列表,其中用户可以一次选择多个项目... 我想要在列表顶部有一个搜索字段,用于搜索列表...
我该怎么做?
I am trying to display a list of data with checkboxes, where user can select multiple items at one time...
I want a search field on top of the list which will search through the list...
How do I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
说明
首先,创建一个包含所有列表字段的向量,以便您可以随时在屏幕上添加和删除它们。 创建屏幕时,将它们全部添加到列表控件中。
现在,假设您有这些 EditFields 之一 - 您的搜索字段。 您可以为其设置侦听器并捕获文本更改事件。
在这种情况下,您可以从列表控件中删除所有字段,从搜索字段中获取文本值,迭代所有字段向量并将满足搜索条件的字段添加到列表控件中。
代码
LookupList 控件:
使用示例:
PS
Explanation
First, create a vector with all list fields, so you will be able to add and remove them on screen at any time. When you create screen, add them all to list control.
Now, lets say you have one of those EditFields - your search field. You can set a listener for it and catch text change event.
On that event you can remove all fields from list control, take text value from search field, iterate all fields vector and add those which meet search criteria to list control.
Code
LookupList control:
Usage sample:
PS