この問題を検索しましたが、まだ解決策が見つかりません。ところで、私の Google 翻訳のレベルは低いです (私はスペイン語を話します)。さて、問題は、申請書を次のようにしたいということです。
または多分そう:
問題は、私がしたいときに、テキストフィールドが消えてしまう ことです。その理由はわかりません。
これが私のコードです:
TableLayout tableLayout = new TableLayout(3, 2);
this.setLayout(tableLayout);
//this.addCommandListener(this);
TableLayout.Constraint colum1 = tableLayout.createConstraint();
colum1.setWidthPercentage(35);
lblCodigo = new Label("Codigo :");
this.addComponent(colum1, lblCodigo);
TableLayout.Constraint colum2 = tableLayout.createConstraint();
colum2.setHorizontalAlign(Component.LEFT);
colum2.setWidthPercentage(65);
txtCodigo = new TextField();
this.addComponent(colum2, txtCodigo);
TableLayout.Constraint span = tableLayout.createConstraint();
span.setWidthPercentage(100);
span.setHorizontalAlign(Component.CENTER);
span.setHorizontalSpan(2);
btnBuscar = new Button("Buscar");
//btnBuscar.setPreferredW(50);
this.addComponent(span, btnBuscar);
さて、私は LWUIT 1.4、Java ME SDK 3.0 を使用しています。
LWUIT 1.5で試しました。
テキストボックスが消える理由を知っている人はいますか?