我想要一个可以添加或删除文本字段的表单。
到目前为止,我正在创建一个数组并调整大小(实际上是将原始数组复制到一个新的更大的数组),然后删除所有表单元素,然后再次添加所有内容 + 这个新的 TextFields 数组,
但我认为这会减慢程序的速度许多 TextFields
将 TextFileds 添加到 Vector 不起作用。当它即将向表单添加 TextField 时,
form.append(vector.elementAt(i));
它说元素不是它。
method Form.append(Item) is not applicable
(actual argument Object cannot be converted to Item by method invocation conversion)
method Form.append(Image) is not applicable
(actual argument Object cannot be converted to Image by method invocation conversion)
method Form.append(String) is not applicable
(actual argument Object cannot be converted to String by method invocation conversion)
我应该重新调整数组大小,还是有更好的方法?