I want to disregard the Device Time and want to implement my own Clock inside my app. The time I need will be coming from the server.
I have already set its Date and Time as follow:
Date.setDate()
and
Date.setTime()
Now, I just need to get my private Date running like a clock.
How can I do this?
EDIT: So far, I have not implemented anything as I have no idea on how to create a clock/timer starting on a specific date/time object. I am thinking of having a thread and a runnable for ticking but I don't know how to increment it to make it work just like a clock.