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.
I am looking to run a certain method call every ten minutes in Android,
Share
HandlerandPostDelayedis the way to go, at the end of yourRunnablehave it make the callmHandler.postDelayed(Runnable, 10 minutes)