我正在 j2me 中编程,我需要为帮助屏幕编写丰富格式的文本

发布于 2024-09-12 18:45:06 字数 512 浏览 5 评论 0原文

我正在编写 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烂柯人 2024-09-19 18:45:06

一种可能的解决方案是使用外部 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文