標籤:驗證 繼承 com tick 發送 set ttext end isinf
1.,要實現一個驗證碼的倒計時的效果
2.實現
圖中擷取驗證碼那塊是一個button按鈕
關鍵區段,聲明一個TimeCount,繼承自CountDownTimer
/*驗證碼倒計時*/
private class TimeCount extends CountDownTimer{
/**
* @param millisInFuture 總時間長度(毫秒)
* @param countDownInterval 時間間隔(毫秒),每經過一次時間間隔都會調用onTick方法
*/
public TimeCount(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
}
@Override
public void onTick(long millisUntilFinished) { //倒計時狀態
getVerificationCodeBtn.setClickable(false); //設定button此時不可點擊
getVerificationCodeBtn.setBackground(getResources().getDrawable(R.drawable.get_verification_code_waitting_bg));//修改button的背景
getVerificationCodeBtn.setTextColor(getResources().getColor(R.color.black));//修改button的textColor
getVerificationCodeBtn.setText(millisUntilFinished / 1000 +"s後可重新發送");//顯示button的倒計時文字
}
@Override
public void onFinish() { //倒計時結束狀態
getVerificationCodeBtn.setBackground(getResources().getDrawable(R.drawable.login_btn_bg));
getVerificationCodeBtn.setTextColor(getResources().getColor(R.color.white));
getVerificationCodeBtn.setClickable(true); //重新設定button為可點擊
getVerificationCodeBtn.setText("重新擷取"); //修改button的文字
}
}
最後在代碼中,聲明TimeCount並執行個體化,在button的點擊事件中調用.start()方法啟動定時器。
TimeCount timeCount = new TimeCount(60000,1000);
timeCount.start();
至此結束。
android中的驗證碼倒計時