按钮中的图像 - j2me
我正在尝试使用 J2ME 构建一个简单的基于菜单的 GUI。菜单项当前是从 Button 类派生的类的对象。有什么方法可以:
替换按钮中的文本并显示图像(类似图标)?
使文本和图像并排显示在同一菜单栏上。
如果我的问题不清楚,请告诉我,我会编辑它。
I am trying to build a simple menu-based GUI with J2ME. The menu entries are currently objects of classes derived from the class Button. Is there any way I can:
Replace the text in the button and have an image show instead, sort of an icon?
Make the text and image appear side by side on the same menu bar.
If my question is not clear, please let me know and I will edit it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过扩展
CustomItem
类。这是一个具有良好
MyButton
类的工作 MIDlet:You can create your own
Item
that looks like a button by extending theCustomItem
class.This is a working MIDlet with a good
MyButton
class: