équivalent setTimeInterval java
// Param is optional, to run task on UI thread. Handler handler = new Handler(Looper.getMainLooper()); Runnable runnable = new Runnable() { @Override public void run() { // Do the task... handler.postDelayed(this, milliseconds) // Optional, to repeat the task. } }; handler.postDelayed(runnable, milliseconds); // Stop a repeating task like this. handler.removeCallbacks(runnable);