I need to refresh the main screen of my app (which is always on-screen by design) once a minute.
Actually I've implemented that with a 60 * 1000 period Timer.
The result is that the refresh does not happen when the system clock (shown in the notification bar) changes minute, but anytime after that.
What my be the most efficient way to sync with system clock?
I'd like to avoid a loop on DateTime.Now...
Actually I've implemented that with a 60 * 1000 period Timer.
The result is that the refresh does not happen when the system clock (shown in the notification bar) changes minute, but anytime after that.
What my be the most efficient way to sync with system clock?
I'd like to avoid a loop on DateTime.Now...