android中的驗證碼倒計時

來源:互聯網
上載者:User

標籤:驗證   繼承   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中的驗證碼倒計時

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.