在 Java 中,如果我想在JLabel
单击 a 时设置 a 的值JButton
,我可以这样编码...
JButton button = new JButton("add");
JButton label = new JLabel();
public void addListenersToButtons(){
button.addActionListener(this);
}
public void actionPerformed(ActionEvent e) {
Object src = e.getSource();
if (src == button) {
label.setText("this is the number = " + number);
}
}
我希望能够在 Android 中做类似的事情,我TextField
在用户单击按钮时设置 a 的值。Android 中的相应代码是什么?