我的private int counter
班级里面有一个,我把它初始化为counter = 3;
我的 OnCreate() 里面。
这是我的 OnCreate 中的倒计时代码:
new CountDownTimer(3000, 1000) {
public void onTick(long msUntilFinished) {
if (counter==3){
Toast.makeText(StartSingle.this, "3", Toast.LENGTH_SHORT).show();
counter--;
}else if (counter==2){
Toast.makeText(StartSingle.this, "2", Toast.LENGTH_SHORT).show();
counter--;
}else if (counter==1){
Toast.makeText(StartSingle.this, "1", Toast.LENGTH_SHORT).show();
counter--;
}else if (counter==0){
Toast.makeText(StartSingle.this, "Go!", Toast.LENGTH_SHORT).show();
}
}
`