这是一个非常简单的代码,其中按钮上的文本被复制到TextField。 代码工作正常,但单击按钮时TextField不会立即更新。 它仅在我单击TextField后或当我拖动表单而不是立即按下按钮时更新。 为什么会发生这种情况,这种行为是出乎意料的。 我正在支持LWUIT的诺基亚501仿真器上测试此代码。
a = new Form("CALCULATOR")
final TextArea data = new TextArea();
final Button ab = new Button("Some Value");
ab.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent arg0) {
// TODO Auto-generated method stub
data.setText(ab.getText());
}
});
a.addComponent(ab);
a.addComponent(data);
a.show();
}
答案 0 :(得分:5)
在文本字段中设置文本后重新绘制它。这可能有用
data.setText(ab.getText());
data.validate(); or data.repaint();
答案 1 :(得分:0)
这是因为您的代码。 我解释一下:
你调用函数actionPerformed:这是lisitner,当用户执行“我单击TextField后...”之后执行操作时调用。
你需要做的很简单:
a = new Form("CALCULATOR")
final TextArea data = new TextArea();
final Button ab = new Button("Some Value");
ab.addActionListener(new ActionListener(){
data.setText(ab.getText());
a.addComponent(ab);
a.addComponent(data);
a.show();
}
答案 2 :(得分:0)
a = new Form("CALCULATOR")
final TextArea data = new TextArea();
final Button ab = new Button("Some Value");
ab.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent arg0) {
// TODO Auto-generated method stub
// data.setText(ab.getText()); // You should not use this
// Use this instead
data.setText(ab.getActionCommand());
}
});
a.addComponent(ab);
a.addComponent(data);
a.show();
}