tags:

views:

70

answers:

1

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.

+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