在按钮上点击TextView中的数字点击

我有一个TextView在一个游戏中计算了剪辑中的子弹数量。 由于拍摄按钮被按下,我想从子弹数中减去1我该怎么做?在按钮上点击TextView中的数字点击

TextView rounds; 

public void onClick(View arg0) {

// TODO Auto-generated method stub

switch(arg0.getId()) {

case R.id.button1:

//What to do ?

break;

回答:

你真的应该读任何基本的Android教程。它会为你和我们节省很多时间。

case R.id.button1: { 

int tmp = Integer.valueOf(rounds.getText().toString();

rounds.setText(String.valueOf(tmp-1));

}

break;

回答:

public class game extends Activity{ //<- Change this (game)! 

private int shoot=10;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.game); //<- Change this!

}

private void update(Button button){

rounds.setText("Bullets"+ shoot--); //Update the information of the button

}

public void onClick(View button) { //When you click

update((Button) button); //Activates the update

}

或者你也可以使用:

TextView rounds; 

public void onClick(View arg0) {

switch(arg0.getId()) {

case R.id.button1:

rounds.setText("Bullets"+ shoot--);

break;

}

以上是 在按钮上点击TextView中的数字点击 的全部内容, 来源链接: utcz.com/qa/258482.html

回到顶部