如何使用 LWUIT 在标签中添加换行符?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Label
不能用于换行。为什么不尝试使用TextArea
呢?它允许您显示多行项目。Label
is not make to break lines. Why don't you try withTextArea
? It allows you to show multiline items.使用
TextArea
而不是Label
并禁用可编辑模式并为该TextArea
创建空边框。Label
不允许多行。Use
TextArea
instead ofLabel
and disable the editable mode and create empty border to thatTextArea
.Label
isn't allow multi line.创建一个 Label label = new Label(" ") 并将其添加到容器中。
Create a Label label = new Label(" ") and add it to the container.
创建许多标签并将它们放置在
BoxLayout
(Y_AXIS)Container
内。Create many labels and place them inside a
BoxLayout
(Y_AXIS)Container
.