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> 

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

相关文章

  • android获取监听SD Card状态的方法

    android获取监听SD Card状态的方法

    这篇文章主要介绍了android获取监听SD Card状态的方法,涉及Android实现SD Card监听的技巧,非常具有实用价值,需要的朋友可以参考下
    2015-04-04
  • Android实现拍照或者选取本地图片

    Android实现拍照或者选取本地图片

    这篇文章主要为大家详细介绍了Android实现拍照或者选取本地图片,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-03-03
  • Flutter滚动组件之SingleChildScrollView使用详解

    Flutter滚动组件之SingleChildScrollView使用详解

    这篇文章主要为大家详细介绍了Flutter滚动组件之SingleChildScrollView使用,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-03-03
  • Android开发仿IOS滑动开关实现代码

    Android开发仿IOS滑动开关实现代码

    这篇文章主要介绍了 android开发仿IOS滑动开关实现代码的相关资料,需要的朋友可以参考下
    2017-05-05
  • listview 选中高亮显示实现方法

    listview 选中高亮显示实现方法

    当点击左侧ListView后,选中的一行就会一直呈高亮状态显示,图中选中行字的颜色显示为蓝色(注意:是选中行后一直高亮,而不是只是点击时高亮),如果再次点击另外的一行, 则新的那一行就高亮,下面就来实现这个高亮效果的显示
    2012-11-11
  • Android实现游戏中的渐隐和渐现动画效果

    Android实现游戏中的渐隐和渐现动画效果

    本文给大家分享android中实现游戏中的渐隐渐现的动画效果,在游戏开发中经常会遇到,对android渐隐渐现效果感兴趣的朋友可以参考下本教程
    2016-09-09
  • Android 使用jarsigner给apk签名的方法详细介绍

    Android 使用jarsigner给apk签名的方法详细介绍

    这篇文章主要介绍了Android 使用jarsigner给apk签名的方法详细介绍的相关资料,APP 完成需要在一些APP 商店进行上传审核,供用户下载使用,APP 需要签名认证,需要的朋友可以参考下
    2016-12-12
  • Android studio实现画板功能

    Android studio实现画板功能

    这篇文章主要介绍了Android studio实现画板功能,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2021-01-01
  • Android开发之图片压缩实现方法分析

    Android开发之图片压缩实现方法分析

    这篇文章主要介绍了Android开发之图片压缩实现方法,结合实例形式分析了Android图片压缩的原理、实现方法及相关操作注意事项,需要的朋友可以参考下
    2019-03-03
  • Android实现让图片在屏幕上任意移动的方法(拖拽功能)

    Android实现让图片在屏幕上任意移动的方法(拖拽功能)

    这篇文章主要介绍了Android实现让图片在屏幕上任意移动的方法,实例分析了Android拖拽功能的相关实现技巧,需要的朋友可以参考下
    2016-08-08

最新评论