Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们知道这TextArea是不可编辑的,那么如何创建一个component看起来像TextArea(具有多行行为)的可编辑?
TextArea
component
TextArea 是可编辑的。以下是创建可编辑文本区域的方法:
TextArea text = new TextArea(); text.setEditable(true); text.setSingleLineTextArea(false);
这对你不起作用吗?
您使用的是哪个版本的 LWUIT,您使用的是哪个平台?
使用TextField并设置其setSingleLineTextArea(false). 这需要 LWUIT 1.5 或更高版本。
TextField
setSingleLineTextArea(false)