0
大家好!我需要將Button禁用5秒,並且按鈕的標題必須是「Skip」加上按鈕保持禁用的時間。如何在5秒後啓用按鈕
我已經做了一個擴展線程的CTimer類,並且使用run(Button)定義了run方法。 run方法接收其標題將被修改按鈕,如下:
public void run(Button skip){
for (int i=5; i<0; i--)
{
skip.setText("Skip (" + i + ")");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
skip.setEnabled(true);
}
的問題是,該代碼不起作用,任何thouhts,任何人嗎?
你的意思是'我< 0' or 'i > 0'? –