I want to record the time using System.currentTimeMillis() when a user begins something in my program. When he finishes, I will subtract the current Syste
System.currentTimeMillis()
Syste
for Android below API 9
(String.format("%d hr %d min, %d sec", millis/(1000*60*60), (millis%(1000*60*60))/(1000*60), ((millis%(1000*60*60))%(1000*60))/1000))