我正在 j2me 中编程,我需要为帮助屏幕编写丰富格式的文本
我正在编写 J2me 应用程序。我的菜单上有一个“帮助”选项。
对于这个屏幕,我需要呈现一个包含一些粗体字、斜体字等的文本......
哪个是最好的选择?
我的第一个解决方案:
StringItem messageItem = new StringItem("","");
messageItem.setText("lorem ipsum etc etc...");
messageItem.setFont(Font.getFont(Font.FACE_SYSTEM,Font.STYLE_BOLD,Font.SIZE_MEDIUM));
append(messageItem);
然后添加另一个具有另一种字体样式的新 StringItem:
StringItem messageItem2 = new StringItem("","");
...
append(messageItem2);
有更好的解决方案吗?
I am programming a J2me application. I have the menu with an option of Help.
For this screen I need to present a text that includes some bold words, italics etc...
Which is the best option?
My first solution:
StringItem messageItem = new StringItem("","");
messageItem.setText("lorem ipsum etc etc...");
messageItem.setFont(Font.getFont(Font.FACE_SYSTEM,Font.STYLE_BOLD,Font.SIZE_MEDIUM));
append(messageItem);
And then add another new StringItem with another font style:
StringItem messageItem2 = new StringItem("","");
...
append(messageItem2);
Is there a better solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更简单的选项: http://www.j2mehtml.com/
A simpler option: http://www.j2mehtml.com/
一种可能的解决方案是使用外部 UI 库,例如 LWUIT。
请看这个:
http://www.nextgenmoco。 com/2010/02/mobile-web-and-html-inside-javame-with.html
One possible solution is using external UI library such as LWUIT.
Please see this:
http://www.nextgenmoco.com/2010/02/mobile-web-and-html-inside-javame-with.html