Android实现倒计时方法汇总

所属分类: 软件编程 / Android 阅读数: 24
收藏 0 赞 0 分享

Android开发中经常会有倒计时的功能,下面将总结出常见的集中实现方式。

1.直接使用Handler的消息机制来实现

xml布局中文件如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="horizontal" >

  <Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:onClick="clickButton"
    android:text="开始计时" />


</LinearLayout>

java代码如下:

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.widget.Button;

public class FirstActivity extends Activity{

  private Button button;
  private int count = 60;
  private int COUNT_TIME = 0;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.first_activity);
    button = (Button) findViewById(R.id.button);

  }

  private Handler handler = new Handler(){

    @Override
    public void handleMessage(Message msg) {
      if(count <= 0){
        count = 60;
        button.setText("重新计时");
        button.setClickable(true);
        return;
      }
      count--;
      button.setText(""+count);
      sendEmptyMessageDelayed(COUNT_TIME,1000);
    }
  };

  public void clickButton(View view){
    handler.sendEmptyMessage(COUNT_TIME);
    button.setClickable(false);
  }
}

2.使用Timer和TimerTask,结合handler一起实现倒计时

import java.util.Timer;
import java.util.TimerTask;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.widget.Button;

public class FirstActivity extends Activity{

  private Button button;
  private int count = 30;
  private int COUNT_TIME = 0;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.first_activity);
    button = (Button) findViewById(R.id.button);

  }

  private Handler handler = new Handler(){

    @Override
    public void handleMessage(Message msg) {
      button.setText(""+count);
      if(count <= 0){
        count = 30;
        button.setClickable(true);
        button.setText("重新计时");
        timerTask.cancel(); //取消该任务
      }
    }
  };

  private Timer timer = new Timer();
  private TimerTask timerTask;
  public void clickButton(View view){
    button.setClickable(false);

    timerTask = new TimerTask() {

      @Override
      public void run() {
        count--;
        handler.sendEmptyMessage(COUNT_TIME);
      }
    };
    timer.schedule(timerTask,0,1000); //0秒后,每过一秒钟执行一次该任务
  }

  @Override
  protected void onDestroy() {
    super.onDestroy();
    //释放资源
    if(timerTask != null){
      timerTask.cancel();
      timerTask = null;
    }
    if(timer != null){
      timer.cancel();
      timer = null;
    }
  }
}

3.使用android自带的原生倒计时类 CountDownTimer

import android.app.Activity;
import android.os.Bundle;
import android.os.CountDownTimer;
import android.view.View;
import android.widget.Button;

public class FirstActivity extends Activity{

  private Button button;

  private CountDownTimer timer;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.first_activity);
    button = (Button) findViewById(R.id.button);

  }

  public void clickButton(View view){
    button.setClickable(false);
    //第一个参数:倒计时的毫秒数;第二个参数:接收onTick回调的时间间隔
    timer = new CountDownTimer(30000, 10) {
       public void onTick(long millisUntilFinished) {
         button.setText(millisUntilFinished / 1000 + "秒");
       }
       public void onFinish() {
         button.setText("重新计时");
         button.setClickable(true);
       }
     };
    timer.start();
  }
  @Override
  protected void onDestroy() {
    super.onDestroy();
    if(timer != null){
      timer.cancel();
    }
  }
}

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

更多精彩内容其他人还在看

Android实现悬浮窗体效果

这篇文章主要为大家详细介绍了Android实现悬浮窗体效果,显示悬浮窗口,窗口可以拖动,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Andriod studio 打包aar 的方法

这篇文章主要介绍了Andriod studio 打包aar的方法,非常不错,具有一定的参考借鉴价值 ,需要的朋友可以参考下
收藏 0 赞 0 分享

Android加载loading对话框的功能及实例代码(不退出沉浸式效果)

这篇文章主要介绍了Android加载loading对话框的功能及实例代码,不退出沉浸式效果,本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

Android中LayoutInflater.inflater()的正确打开方式

这篇文章主要给大家介绍了关于Android中LayoutInflater.inflater()的正确打开方式,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴,下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Delphi在Android下使用Java库的方法

这篇文章主要介绍了Delphi在Android下使用Java库的方法,本文以Android的USB串口通讯库为例,给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

Retrofit2日志拦截器的使用

这篇文章主要介绍了Retrofit2日志拦截器的使用,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

Android创建外部lib库及自定义View的图文教程

这篇文章主要给大家介绍了关于Android创建外部lib库及自定义View的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android分享微信小程序失败的一些事小结

这篇文章主要给大家介绍了关于Android分享微信小程序失败一些事,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android分享微信小程序技巧之图片优化

这篇文章主要给大家介绍了关于Android分享微信小程序技巧之图片优化的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android Viewpager实现无限循环轮播图

这篇文章主要为大家详细介绍了Android Viewpager实现无限循环轮播图,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享
查看更多