BlackBerry动态更新ListField
是否可以动态更新 BlackBerry ListField
?
首先,我创建了一个包含 10 个对象的列表视图,后台服务正在后台运行以收集对象,过了一会儿我又得到了一些对象,我想将这些新对象添加到已经存在的 ListField
无需重新加载主屏幕。
Is it possible to update BlackBerry ListField
dynamically?
First I have created a listview with 10 objects, a background service is running in the background to collect the objects, after a while I got few more objects, I want to add these new objects to already existing ListField
without reloading the MainScreen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,应该是可能的 - 将对象添加到您的数据结构(例如向量),然后调用:
Yes, should be possible - add objects to your data structure (for example a Vector) and then call:
是的。您更改更新具有列表中显示的值的后备存储,然后调用 ListField 上的 setSize 方法之一。
Yes. You change update the backing store where you have the values that are displayed in the list, then call one of the setSize methods on your ListField.