BlackBerry动态更新ListField

发布于 2024-11-08 15:22:42 字数 163 浏览 0 评论 0原文

是否可以动态更新 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 技术交流群。

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

发布评论

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

评论(2

幸福不弃 2024-11-15 15:22:42

是的,应该是可能的 - 将对象添加到您的数据结构(例如向量),然后调用:

UiApplication.getUiApplication().invokeLater(new Runnable() {
    public void run() {
        myList.setSize(myVector.size());
        myList.invalidate();
    }
});

Yes, should be possible - add objects to your data structure (for example a Vector) and then call:

UiApplication.getUiApplication().invokeLater(new Runnable() {
    public void run() {
        myList.setSize(myVector.size());
        myList.invalidate();
    }
});
不疑不惑不回忆 2024-11-15 15:22:42

是的。您更改更新具有列表中显示的值的后备存储,然后调用 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.

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