我可以在 j2me 的同一屏幕上有 CustomItem 和 Canvas 类吗
我可以在 j2me 的同一屏幕上拥有 CustomItem 对象和 Canvas 类吗?
我创建了一个扩展 Canvas 的选项卡菜单,然后创建了一个扩展 CustomItem 类的自定义 Header 类,因此我希望它以一种形式集成。我可以做吗?
Can I have CustomItem object and Canvas class on same screen in j2me?
I created a Tab Menu which extends Canvas and then a custom Header class which extends CustomItem class so I want it to integrate in one form. Can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要 Tab Menu 扩展了 Canvas,就无法使用 MIDP 2 API。
要将其集成到 Form 中,我可能只需重新设计选项卡菜单来扩展 CustomItem 而不是 Canvas。这样就可以将其与您的标题自定义项一起显示在同一表单屏幕上。
As long as Tab Menu extends Canvas, there is no way to integrate it into Form with MIDP 2 API.
To integrate it into Form I would probably just redesign that Tab Menu to extend CustomItem instead of Canvas. That way would make it possible to have it on same form screen along with your Header CustomItem.