android – Handler.postDelayed(Runnable)vs CountdownTimer

前端之家收集整理的这篇文章主要介绍了android – Handler.postDelayed(Runnable)vs CountdownTimer前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有时我们需要在代码运行之前延迟它.

这可以通过Handler.postDelayed(Runnable)或CountdownTimer来实现.

Which one is better in terms of performance?

请参阅下面的示例代码

处理器

new Handler().postDelayed(new Runnable() {
            @Override
            public void run() {
                 //DO SOMETHING
            }
        },1000);

倒计时器

new CountDownTimer(1000,1000) {
            public void onFinish() {
                 //DO SOMETHING
            }
            public void onTick(long millisUntilFinished) {}
        }.start();

解决方法

处理程序应该为您提供更好的性能,因为CountDownTimer包含一个Handler,你可以看到 here.
原文链接:https://www.f2er.com/android/308638.html

猜你在找的Android相关文章