在 j2me 中设计表单
我试图在 J2ME 中设计一个表单,而不使用 Canvas 类,它具有类似列表的结构和图像作为标题。
我想添加命令按钮(确定),因此通过单击它...我可以选择列表中的特定项目并导航到下一个屏幕。
I am trying to design a Form in J2ME without the use of Canvas class which has List like structure and an image as a Header.
I want to add command button (OK) So by clicking on it ... i can choose a particular item in list and get navigated to next Screen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需从该图像创建一个 ImageItem 即可。获取一个表单并将该图像添加到表单中。要添加列表,如果您使用的是 netbeans ide,则可以通过执行以下操作查看各种 UI 示例:File>New project>Category:Samples>UI Demo,然后单击完成。并运行该项目。通过观察那里的样品你就会有想法。
Just create a ImageItem from that image. Take a form and add that image to the form. And to add list, if you are using netbeans ide, you can see various UI examples by doing this: File>New project>Category:Samples>UI Demo then click finish. And run the project. By observing the samples there you will have idea.
只要看看这个 链接。它讲述如何使用 Canvas 创建表格(列表)类型的布局。它看起来像带有行和行的表柱子。您可以从此处下载示例。
Just look at this link. It tells how to create table(list) kind of layout using Canvas. It looks like Table with Row & Column. You can download example from here.