亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android實現一個圖片驗證碼倒計時功能

發布時間:2020-10-13 23:24:28 來源:腳本之家 閱讀:143 作者:卡夫卡15 欄目:移動開發

1.如圖所示,要實現一個驗證碼的倒計時的效果      

android實現一個圖片驗證碼倒計時功能 android實現一個圖片驗證碼倒計時功能 android實現一個圖片驗證碼倒計時功能                     

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實現一個圖片驗證碼倒計時功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

六盘水市| 康乐县| 饶阳县| 久治县| 英吉沙县| 烟台市| 云和县| 洞头县| 龙南县| 内丘县| 磴口县| 四川省| 新密市| 葫芦岛市| 白河县| 密山市| 富民县| 邮箱| 宜都市| 松潘县| 洪雅县| 松溪县| 蓬安县| 屏山县| 清远市| 毕节市| 叙永县| 西乡县| 镇坪县| 改则县| 邛崃市| 徐州市| 民勤县| 普宁市| 安平县| 杂多县| 星子县| 晋州市| 玛曲县| 扬州市| 崇阳县|