I am looking to run a certain method call every ten minutes in Android, what is the best way to go about implementing this? I am currently looking at using the Handler
object's PostDelayed
method.
views:
70answers:
1
+2
A:
Handler and PostDelayed is the way to go, at the end of your Runnable have it make the call mHandler.postDelayed(Runnable, 10 minutes)
schwiz
2010-08-21 22:04:06