Android使用CountDownTimer類實現(xiàn)倒計時鬧鐘
更新時間:2018年01月25日 10:23:43 作者:IT-馮健
這篇文章主要為大家詳細介紹了Android使用CountDownTimer類實現(xiàn)倒計時鬧鐘,具有一定的參考價值,感興趣的小伙伴們可以參考一下
下面使用CountDownTimer類實現(xiàn)倒計時小鬧鐘,CountDownTimer類其實很簡單,一般只需重寫其onFinish和onTick方法就可以實現(xiàn)倒計時小鬧鐘,代碼如下:
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);
}
/**
* 設置鬧鐘倒計時初始值
*
* @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)建一個CountDownTimer對象記錄鬧鐘時間
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);
// 設置為循環(huán)播放
alarmMusic.setLooping(true);
// 播放音樂
alarmMusic.start();
closeMusicBtn.setVisibility(0);
}
};
countDownTimer.start();
startBtn.setText("Stop");
isBrewing = true;
}
/**
* 停止計時
*/
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="關閉音樂"
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>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
EditText限制輸入數(shù)字,精確到小數(shù)點后1位的設置方法
下面小編就為大家?guī)硪黄狤ditText限制輸入數(shù)字,精確到小數(shù)點后1位的設置方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-04-04
Android中實現(xiàn)淘寶購物車RecyclerView或LIstView的嵌套選擇的邏輯
這篇文章主要介紹了Android中實現(xiàn)淘寶購物車RecyclerView或LIstView的嵌套選擇的邏輯,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2016-12-12
Flutter定時器、倒計時的快速上手及實戰(zhàn)講解
這篇文章主要給大家介紹了關于Flutter定時器、倒計時的快速上手及實戰(zhàn)的相關資料,文中通過示例代碼介紹的非常詳細,對大家學習或者使用Flutter具有一定的參考學習價值,需要的朋友們下面來一起學習學習吧2019-06-06
Android webview注入JS代碼 修改網(wǎng)頁內容操作
這篇文章主要介紹了Android webview注入JS代碼 修改網(wǎng)頁內容操作,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-03-03

