我有一個textview有一個從0到0的倒計數的整數。我把一個用戶選擇的隨機數傳遞給定時器,它倒數到0.所以我傳遞變量小號到計時器textview不顯示秒數倒計時Android
我的TextView:
mSeconds = (TextView)findViewById(R.id.secondsLabel);
我的定時器:
int s = //int taken from on spinner in another class
Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
finish();
}
}, s * 1000);
new CountDownTimer(s, 1000) {
public void onTick(long millisUntilFinished) {
mSeconds.setText("" + millisUntilFinished/1000);
}
public void onFinish() {
finish();
}
};
我的TextView不顯示什麼都沒有?我怎樣才能讓它顯示倒計時的秒數?
開始你'CountDownTimer'。 – Rohit5k2