在 J2ME 中的 LWUIT 表中自定义创建单元格
我正在尝试在 J2ME 应用程序中创建一个 LWUIT 表,其中一列中的所有单元格都属于特定类型,例如采用十进制输入的 TextField。
有人可以建议我实现这一目标,甚至是我可以采取的另一种方法吗?
I am trying to create a LWUIT Table in my J2ME application where all cells in one column are of a particular type e.g. TextField taking decimal input.
Could anyone please suggest of achieving this or even another approach I could take?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找错了区域。
我没有使用
ListCellRenderer
而是扩展了 Table 对象并覆盖了createCell
方法。I was looking in the wrong area.
Instead of using
ListCellRenderer
I extended the Table object and overrode thecreateCell
method.