gpt4 book ai didi

java - 单击按钮时设置 Android TextView 的值

转载 作者:行者123 更新时间:2023-12-01 07:13:04 25 4
gpt4 key购买 nike

在Java中,如果我想在单击JButton时设置JLabel的值,我可以像这样编码......

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 的值。 Android 中适合此操作的代码是什么?

最佳答案

这是一个例子:

    final Button btn = (Button) findViewById(R.id.btn);

btn.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
TextView tv = (TextView) findViewById(R.id.TextView1);
tv.setText("hellooo");
}
});

关于java - 单击按钮时设置 Android TextView 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10191336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com