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

       LinearLayout.postDelayed(new Runnable() { 
            public void run() { 

            //Do stuff here

            } 
       }, 2000);

Unfortunately, this only runs once after two seconds and then never runs again. How could I get it to run every two seconds?

Thanks in advance for all your help.

link|improve this question
1  
what is ll in your code? – Jake Basile May 5 '11 at 18:44
feedback

4 Answers

up vote 0 down vote accepted

check the answer by lirik in the below link

display data after every 10 seconds in Android

link|improve this answer
feedback

Put your code in a loop. Or you could look into Alarms.

link|improve this answer
feedback

you can try a timer

Here is another example

link|improve this answer
feedback

Try this:

   LinearLayout.postDelayed(new Runnable() { 
        public void run() { 

        //Do stuff here

            // assuming LinearLayout is enclosing class
            LinearLayout.this.postDelayed(this, 2000);
        } 
   }, 2000);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.