Android CountDownTimer
Posted
by klaus-vlad
on Stack Overflow
See other posts from Stack Overflow
or by klaus-vlad
Published on 2010-04-22T13:10:49Z
Indexed on
2010/04/22
13:13 UTC
Read the original article
Hit count: 525
android
hi,
When writing :
CountDownTimer timer = new CountDownTimer(1000, 100)
{
@Override
public void onTick(long l)
{
}
@Override
public void onFinish()
{
};
}.start();
are we actually starting a new thread that handles ticks ? or what is really happening behind ?
© Stack Overflow or respective owner