LWUIT 显示粗体文本 +普通文本
我需要在 LWUIT 中显示一些富文本。
我正在考虑 HTML 组件,但我无法在那里进行换行 - 可能是我这边的错误。
另一个想法是使用 TextAreas 或 Labels 并手动完成。
我需要能够在非粗体句子中使用粗体单词。
您好,这是粗体。 <- 这个点不应该是粗体。
我有办法实现这一目标吗?我想每个组件只能使用一种字体......
I need to display some Rich-Text in LWUIT.
I was thinking of HTML Component, but I can't get linewrapping there - probably an error on my side.
Another idea would be to use TextAreas or Labels and do it manually.
I'd need the possibility to have bold words in a non bold sentence.
Hello, this is a bold. <- This dot shouldn't be bold.
Is there a way I can achieve that? I think I only can use one Font per Component...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用具有流布局的容器,然后将标签放入其中。这就是 HTML 组件在内部所做的事情。
Use a Container with flow layout and just place labels into it. This is what the HTML Component does internally.
尝试 com.sun.lwuit.html.HTMLComponent 类。使用它,
该组件将允许您在文本中使用 html 标签。有关详细信息,请参阅此链接:HTMLComponent
Try com.sun.lwuit.html.HTMLComponent class. Use it like,
This component will allow you to use html tags inside text. For more information, refer this link: HTMLComponent