0

在 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 中的相应代码是什么?

4

3 回答 3

5

这是一个例子:

    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");
        }
    });
于 2012-04-17T12:38:15.217 回答
3
button.setOnCLickListenere(new OnCLickListsner(){

public void onClick(View v){
 text.setText("text"); //assuming you have reference for the TextView and button
}
});

但是你肯定需要先了解android的基础知识..

于 2012-04-17T12:36:12.807 回答
0
public static int num=0;
plus.setOnCLickListenere(new OnCLickListsner(){
public void onClick(View v){

num=num+1;
 text.setText("Number "+num); //assuming you have reference for the TextView and button
}
});

minus.setOnCLickListenere(new OnCLickListsner(){
public void onClick(View v){

num=num-1;
 text.setText("Number "+num); //assuming you have reference for the TextView and button
}
});

希望你想做这样的事情。这里有两个按钮,按下plus时会加值,按下minus时会减去一个数字。

于 2012-04-17T12:41:46.487 回答