Top "Postdelayed" questions

Android - running a method periodically using postDelayed() call

I have a situation in an Android app where I want to start a network activity (sending out some data) …

android postdelayed
Stop handler.postDelayed()

I call multiple Handlers by new Handler().postDelayed(new Runnable()..... How can I stop it when I click on back? …

android handler android-handler postdelayed
cancelling a handler.postdelayed process

I am using handler.postDelayed() to create a waiting period before the next stage of my app takes place. During …

android android-handler postdelayed
how to use postDelayed() correctly in android studio?

I have a countDownTimer and if the user does not hit the gameButton within the 12th second I want the …

android handler android-handler postdelayed
Updating UI with Runnable & postDelayed not working with timer app

I have looked at every discussion and thread I can find on getting this to work but it is not. …

android multithreading timer handler postdelayed
How to remove a runnable from a handler object added by postDelayed?

I have an "open" animation and am using Handler.postDelayed(Runnable, delay) to trigger a "close" animation after a short …

android handler runnable postdelayed
Android: use handler post.delayed twice

I would like to know if it's possible to use handler().postdelayed twice? I mean, I want to create a …

android handler delay postdelayed
Pausing with handler and postDelayed in android

I'm very new to android programming so please forgive my noobie-ness. I'm trying to create a very simple activity that …

android multithreading handler postdelayed
How to loop or execute a function every 5 seconds on Android

How can I loop that time() function on the onCreate every 5 seconds.. help me I'm a newbie in Android =) ... I …

android loops postdelayed
How to execute a function every two seconds in Java on Android?

I'm trying to execute a chunk of Java code in my Android program every two seconds. My code currently looks …

java android multithreading runnable postdelayed