使用 LWUIT 以 RTL 语言换行文本
我正在开发一个 j2me 应用程序,使用 Netbeans IDE 和 LWUIT 库。我在我的应用程序中使用波斯语(RTL)语言,使用本地化并用位图字体显示它们。
为了将多行文本包装在 Form
中作为 Label
或 TextAreas
中。我的问题是,当它们到达屏幕宽度的中间时,它们会分成多行,即它们不会填充一行,直到屏幕宽度的末尾并转到下一行。我设置了
maxwidth=Display.getInstance().getDisplayWidth());
你能帮我解决这个问题吗?
I'm developing a j2me application using Netbeans IDE and LWUIT library. I'm using Persian (RTL) language in my application using localization and showing them with bitmap font.
In order to wrap multiple line texts in a Form
as Label
s or in TextAreas
. My problem is that they are breaking to multiple lines when they reach to the middle of screen width i.e they don’t fill one line till the end of the screen width and go to the next line. I set
maxwidth=Display.getInstance().getDisplayWidth());
Would you help me with this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用
YourComponent.setPreferredW(Display.getInstance().getDisplayWidth());
try using
YourComponent.setPreferredW(Display.getInstance().getDisplayWidth());
创建文本区域时,将列数设置为一个较大的值(100 左右)。
When creating the text area set the columns number to a large value (100 or so).
在某些语言中,例如印地语(印度),即使它们是 LTR 也使用 unicode,为此我们可以执行 TextArea.setUseStringWidth(true);
这将根据该语言的字体字形对文本进行换行。
In some languages like Hindi(India) where unicodes are used even though they are LTR , for that we can do TextArea.setUseStringWidth(true);
This will wrap the text according to the font glyphs of that language.