ChronometerPersist

Additional

Language
Kotlin
Version
v1.2.0 (Nov 12, 2019)
Created
Feb 22, 2015
Updated
Jul 29, 2021 (Retired)
Owner
Ahmed Rizwan (ahmedrizwan)
Contributor
Ahmed Rizwan (ahmedrizwan)
1
Activity
Badge
Generate
Download
Source code

ChronometerPersist

A helper library for keeping and maintaining the state of Chronometers.

How to use it?

Creating an instance of ChronometerPersist
val chronometerPersist = ChronometerPersist.getInstance(
                              chronometer = chronometerView,
                              identifier = "mainChronometer", // unique identifier
                              sharedPreferences = mySharedPreferences
                         )
Control Methods
//Starting the chronometer
startChronometer();
//Stoping the chronometer
stopChronometer();
//Pausing the chronometer
pauseChronometer();
Status Checking Methods
//Checking status
isRunning(); 
isPaused(); 
Format-Changing Method
//if true then chronometer's format -> HH:MM:SS otherwise MM:SS
hourFormat(boolean); 
State-Recovery Method
//State recovery: call this in onResume() 
resumeState(); 
Check out the sample for a working example!

The sample demonstrates how the library helps recover chronometer state even after the app stops.

Download

Repository available on jCenter

implementation 'com.minimize.library:chronometerpersist:1.2.0'

If the dependency fails to resolve, add this to your project repositories

repositories {
  maven {
      url  "http://dl.bintray.com/ahmedrizwan/maven" 
  }
}

License

Copyright 2015 Ahmed Rizwan

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.