我正在处理一个小型 J2ME 项目,我需要将显示在表单上的文本包装起来,因为它超出了视图。
我正在使用诺基亚 IDE
这是我下面的代码:
aboutScreen.append(new StringItem("QY is a simplified web application that enables people all over the world access...", null));
我该怎么做才能在它到达屏幕末尾时移动到下一行?
我认为您错误地使用了 API - 第一个参数是标签,而不是实际文本。
改为尝试new StringItem(null, "QY is a simplified web application that enables people all over the world access...")
- 当文本空间用完时,文本应该自动换行。
您可以在 JavaDoc 中了解它 - 检查项目大小部分: http ://docs.oracle.com/javame/config/cldc/ref-impl/midp2.0/jsr118/javax/microedition/lcdui/Item.html #尺寸