i want to delay post till the minute change on clock. currently i am using this
handler.postDelayed(drawRunner, 60000);
but this delay post 60 seconds from the time right now. what i want to do is delay the post till minute change on the clock.
for example: lets say time on my phone is 4:15:29
than i want to delay it till the time 4:16:00
and then the next is 4:17:00
and so on.
is there anyway to do this??