如何在Android中實(shí)現(xiàn)倒計(jì)時(shí)功能?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。
創(chuàng)新互聯(lián)建站主營(yíng)婁煩網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,app開(kāi)發(fā)定制,婁煩h5微信小程序開(kāi)發(fā)搭建,婁煩網(wǎng)站營(yíng)銷(xiāo)推廣歡迎婁煩等地區(qū)企業(yè)咨詢
CountDownTimer 實(shí)現(xiàn)倒計(jì)時(shí)功能的機(jī)制也是用Handler 消息控制,只是它幫我們已經(jīng)封裝好了,先看一下它的介紹。
Schedule a countdown until a time in the future, with regular notifications on intervals along the way. Example of showing a 30 second countdown in a text field: new CountDownTimer(30000, 1000) { public void onTick(long millisUntilFinished) { mTextField.setText("seconds remaining: " + millisUntilFinished / 1000); } public void onFinish() { mTextField.setText(“done!”); } }.start();
大致意思是,設(shè)置一個(gè)倒計(jì)時(shí),直到完成這個(gè)時(shí)間段的計(jì)時(shí),并會(huì)實(shí)時(shí)更新時(shí)間的變化,最后舉了一個(gè)30秒倒計(jì)時(shí)的例子,如下:
new CountDownTimer(30000, 1000) { public void onTick(long millisUntilFinished) { mTextField.setText("seconds remaining: " + millisUntilFinished / 1000); } public void onFinish() { mTextField.setText("done!"); } }.start();
詳解
可以看到,上面示例中構(gòu)造方法需要傳入兩個(gè)參數(shù),如下:
/** * @param millisInFuture The number of millis in the future from the call to start() * until the countdown is done and onFinish() is called. * @param countDownInterval The interval along the way to receive onTick(long) callbacks. */ public CountDownTimer(long millisInFuture, long countDownInterval) { mMillisInFuture = millisInFuture; mCountdownInterval = countDownInterval; }
第一個(gè)參數(shù)是倒計(jì)時(shí)的總時(shí)間,第二個(gè)參數(shù)是倒計(jì)時(shí)的時(shí)間間隔(每隔多久執(zhí)行一次),注意這里傳入的兩個(gè)時(shí)間參數(shù)的單位都是毫秒。
它提供的幾個(gè)方法也很簡(jiǎn)單,如下:
start():開(kāi)始倒計(jì)時(shí)。
cancel():取消倒計(jì)時(shí)。
onFinish():倒計(jì)時(shí)完成后回調(diào)。
onTick(long millisUnitilFinished):當(dāng)前任務(wù)每完成一次倒計(jì)時(shí)間隔時(shí)間時(shí)回調(diào)。
驗(yàn)證碼示例
短信驗(yàn)證碼倒計(jì)時(shí)原理很簡(jiǎn)單,也就是點(diǎn)擊獲取驗(yàn)證碼開(kāi)啟倒計(jì)時(shí),在倒計(jì)時(shí)內(nèi)不可點(diǎn)擊,倒計(jì)時(shí)結(jié)束后方可重新獲取,如下所示:
new CountDownTimer(millisUntilFinished, 1000) { /** * 當(dāng)前任務(wù)每完成一次倒計(jì)時(shí)間隔時(shí)間時(shí)回調(diào) * @param millisUntilFinished */ public void onTick(long millisUntilFinished) { if (btn_Code != null) { //按鈕不可用 btn_Code.setClickable(false); btn_Code.setEnabled(false); btn_Code.setText(millisUntilFinished / 1000 + "s"); } } /** * 倒計(jì)時(shí)完成后回調(diào) */ public void onFinish() { if (btn_Code != null) { //按鈕可用 btn_Code.setText("重新獲取"); btn_Code.setClickable(true); btn_Code.setEnabled(true); } //取消倒計(jì)時(shí) cancel(); } }.start();
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。
網(wǎng)站欄目:如何在Android中實(shí)現(xiàn)倒計(jì)時(shí)功能
文章網(wǎng)址:http://jinyejixie.com/article28/pdcejp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁(yè)設(shè)計(jì)公司、關(guān)鍵詞優(yōu)化、定制網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站策劃、軟件開(kāi)發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)