我将如何在按钮点击中创建一个循环
How will i create a loop inside a button click
我有 1 个 button
和一个 text view
。
我想在每次单击 button
时在 text view
中显示数字 0-5
。
int index = 2;
switch (index) {
case 0:
// if we are using index 0, set the text to index 1 text and change index to 1
index = 1;
line2.setText(0);
break;
case 1:
index = 2;
line2.setText(1);
break;
case 2:
index = 0;
line2.setText(2);
break;
}
我已经尝试了互联网上提供的大部分示例,但它并没有改变值。
任何人都请帮我解决这个问题。
提前致谢。
int mCounter = 0;
在 onClick() 上 Button:
if(mCounter>4){
mCounter=0;
}
mCounter++;
txtInfo.setText(""+mCounter);
希望对您有所帮助。
我有 1 个 button
和一个 text view
。
我想在每次单击 button
时在 text view
中显示数字 0-5
。
int index = 2;
switch (index) {
case 0:
// if we are using index 0, set the text to index 1 text and change index to 1
index = 1;
line2.setText(0);
break;
case 1:
index = 2;
line2.setText(1);
break;
case 2:
index = 0;
line2.setText(2);
break;
}
我已经尝试了互联网上提供的大部分示例,但它并没有改变值。 任何人都请帮我解决这个问题。
提前致谢。
int mCounter = 0;
在 onClick() 上 Button:
if(mCounter>4){
mCounter=0;
}
mCounter++;
txtInfo.setText(""+mCounter);
希望对您有所帮助。