Android_Chronometer pause
You are gonna need a variable that keeps track on the time that has passed since the Chronometer was started: long timeWhenStopped = 0; Update the value of the variable when you stop the chronometer like this: timeWhenStopped = mChronometer.getBase() – SystemClock.elapsedRealtime(); mChronometer.stop(); We will also use this variable to adjust the chronometer before starting … Read more