I would like a countup timer, and i have nooooo idea how to make one. All of the things I've seen on the nets here are countDOWN timers, and I don't know how they work either.
Thanks in Advance, DMGCK
System.currentTimeMillis()
long timeBegan = System.currentTimeMillis();
long currentTime = System.currentTimeMillis(); int secondsPassed = (currentTime - timeBegan) / 1000;