I'm trying to determine how many hours, minutes, seconds have passed throughout the day.
The timer restarts at midnight for every new day.
So if the current time is 2:15 PM, I need to calculate that to be 14 hours and fifteen minutes.
I know how to do this in .Net easily, but unfortunately I'm not as familiar with Android and Java's Calendar/date classes.
It appears the Date class is somewhat deprecated at this point.
Can anyone point me in the right direction?
Thanks.
You can use the
Calendar
class to get this. You can get aCalendar
set to midnight like this:Then you can get the time in millis or use other methods to get hours/minutes/seconds, etc.