Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

hi When my app get the ACTION_BOOT_COMPLETED it starts a service. I would like to delay that for lets say 60sec. Can i do that in the:

public class StartAtBootServiceReceiver extends BroadcastReceiver 
{

        public void onReceive(Context context, Intent intent) 
        {
           // Delay...60sec
        }
}
share|improve this question
You can, I allow you. – Vladimir Ivanov Dec 30 '10 at 11:41

2 Answers

up vote 3 down vote accepted

use Timer() and TimerTask():

        Timer timer = new Timer();
        timer.schedule(new TimerTask() {
            @Override
            public void run() {
                //run your service
            }
        }, 60000);
share|improve this answer
thanks will try that, also Prashast is talking about AlarmManager. What is best? – Erik Dec 30 '10 at 16:24
for such a simple delay AlarmManager is an overhead. It is used in more complicated cases. – Vladimir Ivanov Dec 30 '10 at 16:47
thanks really helps – Erik Dec 30 '10 at 17:46
Android docs state "there is a timeout of 10 seconds that the system allows before considering the receiver to be blocked and a candidate to be killed". Hence, using Timer in onReceive might be unreliable. I would go with AlarmManager! – wrygiel May 28 '12 at 8:17
For clarification - of course, the scheduling is instant and onReceive ends quickly, but the Receiver object has to remain in memory for the TimerTask to work. But since after leaving onReceive the receiver object MAY be freed by system, you should not use it. – wrygiel May 28 '12 at 8:25

When you receive the BOOT_COMPLETED intent you should use the AlarmManager to setup an pending intent that will fire after 60 seconds.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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