我们知道TextArea
不可编辑,因此如何创建一个看起来像component
的可编辑TextArea
(具有多行行为)?
答案 0 :(得分:2)
TextArea是可编辑的。以下是创建可编辑文本区域的方法:
TextArea text = new TextArea();
text.setEditable(true);
text.setSingleLineTextArea(false);
这不适合你吗?
您使用的是什么版本的LWUIT和平台?
答案 1 :(得分:1)
使用TextField
并设置其setSingleLineTextArea(false)
。这需要LWUIT 1.5或更新版本。