1.如圖所示,要實(shí)現(xiàn)一個驗(yàn)證碼的倒計(jì)時的效果
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)建站!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、微信小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了六盤水免費(fèi)建站歡迎大家使用!
2.實(shí)現(xiàn)
圖中獲取驗(yàn)證碼那塊是一個button按鈕
關(guān)鍵部分,聲明一個TimeCount,繼承自CountDownTimer
/*驗(yàn)證碼倒計(jì)時*/ private class TimeCount extends CountDownTimer{ /** * @param millisInFuture 總時間長度(毫秒) * @param countDownInterval 時間間隔(毫秒),每經(jīng)過一次時間間隔都會調(diào)用onTick方法 */ public TimeCount(long millisInFuture, long countDownInterval) { super(millisInFuture, countDownInterval); } @Override public void onTick(long millisUntilFinished) { //倒計(jì)時狀態(tài) getVerificationCodeBtn.setClickable(false); //設(shè)置button此時不可點(diǎn)擊 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后可重新發(fā)送");//顯示button的倒計(jì)時文字 } @Override public void onFinish() { //倒計(jì)時結(jié)束狀態(tài) getVerificationCodeBtn.setBackground(getResources().getDrawable(R.drawable.login_btn_bg)); getVerificationCodeBtn.setTextColor(getResources().getColor(R.color.white)); getVerificationCodeBtn.setClickable(true); //重新設(shè)置button為可點(diǎn)擊 getVerificationCodeBtn.setText("重新獲取"); //修改button的文字 } }
最后在代碼中,聲明TimeCount并實(shí)例化,在button的點(diǎn)擊事件中調(diào)用.start()方法啟動定時器。
TimeCount timeCount = new TimeCount(60000,1000); timeCount.start();
總結(jié)
以上所述是小編給大家介紹的android實(shí)現(xiàn)一個圖片驗(yàn)證碼倒計(jì)時功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對創(chuàng)新互聯(lián)網(wǎng)站的支持!
本文題目:android實(shí)現(xiàn)一個圖片驗(yàn)證碼倒計(jì)時功能
網(wǎng)頁地址:http://www.rwnh.cn/article8/jipcip.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁設(shè)計(jì)公司、網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)公司、定制開發(fā)、服務(wù)器托管、云服務(wù)器
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)