TextFieldsを追加または削除できるフォームが欲しいのですが。
私はこれまで、配列を作成してサイズを変更し(実際には、元の配列を新しいより大きな配列にコピーし)、すべてのフォーム要素を削除し、すべてを再度追加して+この新しいTextFieldsの配列を追加して
いましたが、これによりプログラムの速度が低下すると思います。多くのTextFields
ベクターへのTextFiledsの追加が機能していません。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)
アレイのサイズ変更を検討する必要がありますか、それとももっと良い方法がありますか?