Problem starting with chronometer

5.3k Views Asked by At

My chronometer is always starting from 0:10 or like some other times... it s not starting from 0:01 itself..any one can help me

Thank you,

2

There are 2 best solutions below

1
On BEST ANSWER

i got an answer

  final Chronometer chrono = (Chronometer)findViewById(R.id.chronometer);

  chrono.setBase(SystemClock.elapsedRealtime());
  chrono.start();

once it will help to others thank you,,

0
On

you can start chronometer any value you want using setBase method of chronometer.you can also calculate Elapsed Time during start and stop of chronometer