app直播原始碼,驗證時實現獲取驗證碼並顯示倒數計時的功能

zhibo系統開發發表於2021-12-21

app直播原始碼,驗證時實現獲取驗證碼並顯示倒數計時的功能

// 請求驗證碼
private void requestCode() {
    if (!mRequestCode.isClickable())
        return;
    if (TextUtils.isEmpty(mPhone.getText())) {
        Toast.makeText(this, R.string.toast_phone, Toast.LENGTH_SHORT).show();
        return;
    }
    String userName = mPhone.getText().toString();
    //TODO:利用userName向伺服器請求傳送驗證碼
    mRequestCode.setClickable(false);
    mTimer = new CountDownTimer(60000, 1000) {
        @Override
        public void onTick(long millisUntilFinished) {
            mRequestCode.setText(millisUntilFinished / 1000 + "s");
        }
        @Override
        public void onFinish() {
            mRequestCode.setText(R.string.register_request_code);
            mRequestCode.setClickable(true);
        }
    };
    mTimer.start();
}


以上就是app直播原始碼,驗證時實現獲取驗證碼並顯示倒數計時的功能, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2848666/,如需轉載,請註明出處,否則將追究法律責任。

相關文章