有什么简单的方法可以使选择适用于黑莓?

发布于 2024-11-15 01:28:16 字数 122 浏览 1 评论 0原文

我是黑莓开发的新手。我想念我的 iPhone uitableviews。黑莓有类似的吗?它需要保存可变数量的单元格,并且单元格需要是可选择的,这将看起来是一个新的视图。我正在查看 ListField 但我不知道如何实际加载单元格。

I am new to blackberry development. I miss my iphone uitableviews. If there anything similar for the blackberry? It needs to hold a variable amount of cells and the cells need to be selectable which will look a new view. I was looking at ListField but I can't figure out how to actually load the cells.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

挽清梦 2024-11-22 01:28:16

这个网站有一个很好的例子,你可以挑选 -> http://developerlife.com/tutorials/?p=898

您需要的一件事添加到 MyListField

protected boolean navigationClick(int status, int time) {

    // Push screen 
    MyScreen myScreen = new myScreen();
    UiApplication.getUiApplication().pushScreen( myScreen );

}

这将捕获单击或触摸事件

This site has a good example you can pick apart -> http://developerlife.com/tutorials/?p=898

The one thing you will need to add to MyListField

protected boolean navigationClick(int status, int time) {

    // Push screen 
    MyScreen myScreen = new myScreen();
    UiApplication.getUiApplication().pushScreen( myScreen );

}

This will catch that click or touch event

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