Android 实现倒计时的几种方式

本文介绍了六种不同的倒计时实现方式,包括使用Handler、CountDownTimer、Timer+TimerTask+Handler、ValueAnimator、RxJava的Observable.timer及Observable.interval等方法。每种方式都提供了详细的代码示例,适合不同需求的应用场景。
摘要由CSDN通过智能技术生成

实现倒计时的方式真是多种多样,今天作为小白的我就总结一下 ,如有雷同,哈哈哈。

方式1 sendEmptyMessageDelayed

int time  = 10int RepeatCount = 10;
 private Handler handler =new Handler(){
        public void handleMessage(android.os.Message msg) {
            switch (msg.what) {
                case 1://倒计时
                    time = time - 1;
                    if (time <= 0) {
                        time = RepeatCount ;
                          Log.e("tag" ,"结束 "+ StringFormat.dateFormathmm(new Date()) ) ;
                    } else {

                    Log.e("tag" ,"当前时间"+ StringFormat.dateFormathmm(new Date()) +" time "  + String.valueOf(time)) ;     handler.sendEmptyMessageDelayed(1, 1000);
                    }
                    break;
                default:
                    break;
            }

        };
    };

调用

 handler.sendEmptyMessage(1);//通知倒计时

###方式二 CountDownTimer

Android 封装好的 ,比较简单

 private CountDownTimer countDownTimer = new CountDownTimer(10000, 1000) {//第一个参数表示总时间,第二个参数表示间隔时间。

        @Override
        public void onTick(long millisUntilFinished) {
            Log.e("tag", "当前时间" + StringFormat.dateFormathmm(new Date()) + " timer " + (millisUntilFinished / 1000));
        }

        @Override
        public void onFinish() {
            Log.e("tag", "结束");
        }
    };

调用

 countDownTimer.start();

方式三 Timer + TimerTask + Handler

 int time = 10Timer timer;
private Handler handler = new Handler(){
        public void handleMessage(android.os.Message msg) {
            switch (msg.what) {
                case 1:
                    if(time>0){
                        Log.e("tag" ,"当前时间"+ StringFormat.dateFormathmm(new Date()) +" timer "  + String.valueOf(time)) ;
                    }else{

                        timer.cancel();
                        Log.e("tag" ,"结束 "+ StringFormat.dateFormathmm(new Date()) ) ;
                    }

                    break;
                default:
                    break;
            }

        };
    };

        timer=new Timer();
        TimerTask task = new TimerTask() {
            @Override
            public void run(){
                time--;
                handler.sendEmptyMessage(1);

            }
        };

        timer.schedule(task, 100, 1000);

方式四 ValueAnimator

也是相当容易…

 valueAnimator = ValueAnimator.ofInt(10, 0);
 valueAnimator.setDuration(10 * 1000);// 注意 单位
 valueAnimator.addUpdateListener(new    ValueAnimator.AnimatorUpdateListener() {
     @Override
     public void onAnimationUpdate(ValueAnimator animation) {
         Integer timer = (Integer) animation.getAnimatedValue();
         if (value == 0) {
              Log.e("tag", "结束");
         } else {
             Log.e("tag" ,"当前时间"+ StringFormat.dateFormathmm(new Date()) +" timer "  + String.valueOf(timer)) ;
         }
     }
 });
 valueAnimator.start();

方式五 Observable.timer + repeat

 Observable.timer(1, TimeUnit.SECONDS)
                .subscribeOn(Schedulers.computation())
                .observeOn(AndroidSchedulers.mainThread())
                .repeat(count)
                .subscribe(aLong ->
                {
                    timer--;//aLong  0
                    Log.e("tag" ,"当前时间"+ StringFormat.dateFormathmm(new Date()) +" timer "  + String.valueOf(timer)) ;
                    if (timer<=0){
                        timer = count;
                        Log.e("tag" ," 结束 " ) ;
                    }
                });

方式六 Observable.interval

Observable.interval(0, 1, TimeUnit.SECONDS)//设置0延迟,每隔一秒发送一条数据
                .doOnSubscribe(new Action0() {
                    @Override
                    public void call() {
                       Log.e("tag","开始");

                })
                .subscribeOn(AndroidSchedulers.mainThread()) // 上面 指定主线程

                .map(new Func1<Long, Long>() {
                    @Override
                    public Long call(Long aLong) {
                        return count - aLong; // 将 1,2,3 。。   转成 3,2,1 。。
                    }
                })
                .take(count + 1) //设置循环count +1次
                 .observeOn(AndroidSchedulers.mainThread()) //回调到主线程
                .subscribe(new Observer<Long>() {
                    @Override
                    public void onCompleted() {
                        Log.e("tag" ," 结束 " ) ;
                    }

                    @Override
                    public void onError(Throwable e) {

                    }

                    @Override
                    public void onNext(Long aLong) {
                        Log.e(TAG, "当前时间"+ StringFormat.dateFormathmm(new Date()) +"onNext:剩余时间  " + aLong);

                    }
                });

注意:
在当前页面销毁时,注意当前的计时器是否还在继续,如有要 手动 取消,或置 空。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值