When recording:
CountDownTimer timer = new CountDownTimer(1000, 100) { @Override public void onTick(long l) { } @Override public void onFinish() { }; }.start();
Are we really launching a new thread that processes ticks? If not, what is really happening?
android countdowntimer
rantravee
source share