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.
我将使用画布在 j2me 上制作应用程序。我想在画布上使用文本框或文本字段。
您可以绘制一个基本的文本框并显示一个字符串,当它获得焦点时,您可以将视图切换到该特定的文本框,就像这样
textBox = new TextBox(....); Midlet.display.setCurrent(textBox);
这将使您的数据输入更加健壮,并使您免于自己实现各种键盘问题的痛苦
这些项目仅可用于添加到Forms。Canvas是用于处理较低级别事件的类。
Form
Canvas
您必须实现自己的文本框,这并不容易。基本文本框将是一个矩形 ( drawRect),其中包含文本 ( drawString)。
drawRect
drawString