如何使用 LWUIT 在标签中添加换行符?

发布于 2025-01-02 13:00:17 字数 108 浏览 1 评论 0原文

我在 Form 上创建了一个 Label,但太大而无法在一行中显示,是否可以制作一条断线?我在 J2ME 上使用 LWUIT。

谢谢。

I've created a Label on a Form, but is too large to show it in one line, is it posible make a break line? I am using LWUIT on J2ME.

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

十级心震 2025-01-09 13:00:17

Label 不能用于换行。为什么不尝试使用 TextArea 呢?它允许您显示多行项目。

Label is not make to break lines. Why don't you try with TextArea? It allows you to show multiline items.

遗心遗梦遗幸福 2025-01-09 13:00:17

使用 TextArea 而不是 Label 并禁用可编辑模式并为该 TextArea 创建空边框。 Label 不允许多行。

Use TextArea instead of Label and disable the editable mode and create empty border to that TextArea. Label isn't allow multi line.

泅渡 2025-01-09 13:00:17

创建一个 Label label = new Label(" ") 并将其添加到容器中。

Create a Label label = new Label(" ") and add it to the container.

一人独醉 2025-01-09 13:00:17

创建许多标签并将它们放置在 BoxLayout(Y_AXIS) Container 内。

Create many labels and place them inside a BoxLayout(Y_AXIS) Container.

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