I need my app to trigger an alert a specified amount of time after a user presses a button. The documentation makes it look like Handler is what I need, and usage appears to be brain dead.

However, I'm finding that despite using postDelayed, my routine is running immediately. I know I'm missing something obvious, but I just can't see it. Why does the code below make the phone vibrate the immediately rather than waiting a minute?

 ...

   final Button button = (Button) findViewById(R.id.btnRun);
   final Handler handler = new Handler();

   button.setOnClickListener(new OnClickListener() {

   public void onClick(View v) {             
        ...
        handler.postDelayed(Vibrate(), 60000);

        }         
    });
...

    private Runnable Vibrate() {
    Vibrator v = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE); 
    v.vibrate(300);
    return null;
   }
link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

That's because you are doing it the wrong way. Just see the flow:

handler.postDelayed(Vibrate(), 60000) will call the Vibrate() method immediately, and then it runs the vibrator stuff. In fact Vibrate() returns null? What do you think that the handler will do with a null reference? You are lucky that it does not throw a NullPointerException. There are too many examples of how to correctly implement a handler... just dig a little bit more on google.

private class Vibrate implements Runnable{
  public void run(){
    Vibrator v = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE); 
    v.vibrate(300);
  }
}

Then:

handler.postDelayed(new Vibrate(), 60000);
link|improve this answer
feedback

You need to write a run() method for Vibrate:

private class Vibrate implements Runnable {
  public void run(){
    Vibrator v = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE); 
    v.vibrate(300);
    //return null; don't return anything
  }
}
link|improve this answer
I don't like downvoting... though, you better fix your answer. In that case, Vibrate() acts as a method, not as a class. – Cristian Nov 2 '10 at 17:43
1  
Sorted, thanks for the heads-up. – Tom Medley Nov 2 '10 at 17:46
feedback

Your Answer

 
or
required, but never shown

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