Phillip Toone
Phillip Toone
Thanks for the help but that didn't work for me. :(
The following function give me what I was looking for: ``` boolean isTimerRunning() // output true if timer is running. { if(Paused) return false; else return true; } ``` I...
Thank you for the update of your original post. I would like to use this library across two different activities. I would like each activity to have its own behavior...
Okay, I think I've figures this out for myself and thought I would post what I have learned here for others to learn from. (Or correct me if I am...