Android使用CountDownTimer类实现倒计时闹钟

 更新时间:2018年01月25日 10:23:43   作者:IT-冯健  
这篇文章主要为大家详细介绍了Android使用CountDownTimer类实现倒计时闹钟,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

下面使用CountDownTimer类实现倒计时小闹钟,CountDownTimer类其实很简单,一般只需重写其onFinish和onTick方法就可以实现倒计时小闹钟,代码如下:

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() { 
    // 创建一个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"); 
        // 加载指定音乐,并为之创建MediaPlayer对象 
        alarmMusic = MediaPlayer.create(MainActivity.this, R.raw.music); 
        // 设置为循环播放 
        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> 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Flutter实现倒计时功能

    Flutter实现倒计时功能

    这篇文章主要为大家详细介绍了Flutter实现倒计时功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-03-03
  • Android使用Dialog风格弹出框的Activity

    Android使用Dialog风格弹出框的Activity

    这篇文章主要为大家详细介绍了Android使用Dialog风格弹出框的Activity,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-09-09
  • 使用Android实现一个悬浮在软键盘上的输入栏

    使用Android实现一个悬浮在软键盘上的输入栏

    app开发中经常会遇到一些输入框要悬浮到软键盘上方的需求,下面这篇文章主要给大家介绍了关于如何使用Android实现一个悬浮在软键盘上的输入栏的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考下
    2022-04-04
  • Android Button的基本用法详解及简单实例

    Android Button的基本用法详解及简单实例

    这篇文章主要介绍了Android Button的基本用法详解及简单实例的相关资料,需要的朋友可以参考下
    2017-02-02
  • Android开发之时间日期操作实例

    Android开发之时间日期操作实例

    这篇文章主要介绍了Android开发之时间日期操作,是Android程序开发中常见的一个功能,需要的朋友可以参考下
    2014-08-08
  • Android inflater 用法及不同点

    Android inflater 用法及不同点

    在 实际开发中LayoutInflater这个类还是非常有用的,它的作用类似于findViewById()。这篇文章主要介绍了Android inflater 用法,需要的朋友可以参考下
    2018-11-11
  • Android如何读写CSV文件方法示例

    Android如何读写CSV文件方法示例

    CSV 文件是Excel 的标准文件格式,在开发过程中经常需要格式化输出数据。CSV 的格式非常简单,都是一行一行存储的,同一行不同列之间用逗号隔开。下面这篇文章主要给大家介绍了关于Android如何读写CSV文件的相关资料,需要的朋友可以参考下。
    2017-08-08
  • Android 沉浸式状态栏及悬浮效果

    Android 沉浸式状态栏及悬浮效果

    这篇文章主要介绍了Android 沉浸式状态栏及悬浮效果的相关资料,非常不错,具有参考借鉴价值,需要的朋友可以参考下
    2016-11-11
  • Android高德地图marker自定义弹框窗口

    Android高德地图marker自定义弹框窗口

    这篇文章主要为大家详细介绍了Android高德地图marker自定义弹框窗口,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-04-04
  • 详解Android用Shape制作单边框图的两种思路和坑

    详解Android用Shape制作单边框图的两种思路和坑

    这篇文章主要介绍了详解Android用Shape制作单边框图的两种思路和坑,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-08-08

最新评论