Android使用CountDownTimer類實(shí)現(xiàn)倒計(jì)時(shí)鬧鐘
下面使用CountDownTimer類實(shí)現(xiàn)倒計(jì)時(shí)小鬧鐘,CountDownTimer類其實(shí)很簡單,一般只需重寫其onFinish和onTick方法就可以實(shí)現(xiàn)倒計(jì)時(shí)小鬧鐘,代碼如下:
MainActivity:
package com.home.brewclock; import android.app.Activity; import android.media.MediaPlayer; import android.os.Bundle; import android.os.CountDownTimer; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.TextView; public class MainActivity extends Activity implements OnClickListener { private Button addTimeBtn; private Button decreaseTimeBtn; private Button startBtn; private Button closeMusicBtn; private TextView timeText; private int brewTime = 3; private CountDownTimer countDownTimer; private boolean isBrewing = false; private MediaPlayer alarmMusic; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); addTimeBtn = (Button) findViewById(R.id.main_btn_up); decreaseTimeBtn = (Button) findViewById(R.id.main_btn_down); startBtn = (Button) findViewById(R.id.main_start); closeMusicBtn = (Button) findViewById(R.id.main_btn_close_music); timeText = (TextView) findViewById(R.id.main_tv); addTimeBtn.setOnClickListener(this); decreaseTimeBtn.setOnClickListener(this); startBtn.setOnClickListener(this); closeMusicBtn.setOnClickListener(this); setBrewTime(3); } /** * 設(shè)置鬧鐘倒計(jì)時(shí)初始值 * * @param minutes */ public void setBrewTime(int minutes) { if (isBrewing) return; brewTime = minutes; if (brewTime < 1) { brewTime = 1; } timeText.setText(String.valueOf(brewTime) + "m"); } /** * 開啟鬧鐘 */ public void startBrew() { // 創(chuàng)建一個(gè)CountDownTimer對象記錄鬧鐘時(shí)間 countDownTimer = new CountDownTimer(brewTime * 60 * 1000, 1000) { @Override public void onTick(long millisUntilFinished) { timeText.setText(String.valueOf(millisUntilFinished / 1000) + "s"); } @Override public void onFinish() { isBrewing = false; timeText.setText(brewTime + "m"); startBtn.setText("Start"); // 加載指定音樂,并為之創(chuàng)建MediaPlayer對象 alarmMusic = MediaPlayer.create(MainActivity.this, R.raw.music); // 設(shè)置為循環(huán)播放 alarmMusic.setLooping(true); // 播放音樂 alarmMusic.start(); closeMusicBtn.setVisibility(0); } }; countDownTimer.start(); startBtn.setText("Stop"); isBrewing = true; } /** * 停止計(jì)時(shí) */ public void stopBrew() { if (countDownTimer != null) { countDownTimer.cancel(); } isBrewing = false; startBtn.setText("Start"); } @Override public void onClick(View v) { if (v == addTimeBtn) { setBrewTime(brewTime + 1); } else if (v == decreaseTimeBtn) { setBrewTime(brewTime - 1); } else if (v == startBtn) { if (isBrewing) { stopBrew(); } else { startBrew(); } } else if (v == closeMusicBtn) { if (alarmMusic != null) { alarmMusic.stop(); closeMusicBtn.setVisibility(8); } } } }
布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <Button android:id="@+id/main_btn_close_music" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="關(guān)閉音樂" android:visibility="gone" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_centerInParent="true" android:gravity="center" android:orientation="horizontal" > <Button android:id="@+id/main_btn_down" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="-" android:textSize="40dp" /> <TextView android:id="@+id/main_tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dp" android:text="0:00" android:textSize="40dp" /> <Button android:id="@+id/main_btn_up" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="+" android:textSize="40dp" /> </LinearLayout> <Button android:id="@+id/main_start" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:text="Start" /> </RelativeLayout>
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Android獲取驗(yàn)證碼倒計(jì)時(shí)實(shí)現(xiàn)代碼
這篇文章主要為大家詳細(xì)介紹了Android獲取驗(yàn)證碼倒計(jì)時(shí)的實(shí)現(xiàn)代碼,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-07-07EditText限制輸入數(shù)字,精確到小數(shù)點(diǎn)后1位的設(shè)置方法
下面小編就為大家?guī)硪黄狤ditText限制輸入數(shù)字,精確到小數(shù)點(diǎn)后1位的設(shè)置方法。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2017-04-04Android中實(shí)現(xiàn)淘寶購物車RecyclerView或LIstView的嵌套選擇的邏輯
這篇文章主要介紹了Android中實(shí)現(xiàn)淘寶購物車RecyclerView或LIstView的嵌套選擇的邏輯,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下2016-12-12基于Android實(shí)現(xiàn)個(gè)性彩色好看的二維碼
二維碼在我們?nèi)粘I钪袩o處不在,今天小編通過本教程給大家介紹基于Android實(shí)現(xiàn)個(gè)性彩色好看的二維碼,需要的朋友參考下吧2016-02-02Flutter使用?input?chip?標(biāo)簽組件示例詳解
這篇文章主要為大家介紹了Flutter使用?input?chip?標(biāo)簽組件示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-10-10Flutter定時(shí)器、倒計(jì)時(shí)的快速上手及實(shí)戰(zhàn)講解
這篇文章主要給大家介紹了關(guān)于Flutter定時(shí)器、倒計(jì)時(shí)的快速上手及實(shí)戰(zhàn)的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家學(xué)習(xí)或者使用Flutter具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧2019-06-06Android webview注入JS代碼 修改網(wǎng)頁內(nèi)容操作
這篇文章主要介紹了Android webview注入JS代碼 修改網(wǎng)頁內(nèi)容操作,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-03-03Android實(shí)現(xiàn)注冊登錄界面的實(shí)例代碼
這篇文章主要介紹了Android實(shí)現(xiàn)注冊登錄界面的實(shí)例代碼,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2018-05-05