I have an "open" animation and am using Handler.postDelayed(Runnable, delay) to trigger a "close" animation after a short delay. However, during the time between open and close, there is possibly another animation triggered by a click...my question is, how would I cancel the "close" animation in the handler?

Thanks

link|improve this question

62% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Just use the removeCallbacks(Runnable r) method.

link|improve this answer
Is it possible to remove callbacks for anonymous runnables? – Bruce Lee Sep 2 '10 at 13:36
I don't think so... you will have to use non-anonymous ones. Otherwise you won't be able to reference them in the future. – Cristian Sep 2 '10 at 15:31
feedback

If your using recursion, you can acheive this by passing "this". See code below.

public void countDown(final int c){
    mHandler.postDelayed(new Runnable() {
        @Override
        public void run() {
            aq.id(R.id.timer).text((c-1)+"");
            if(c <= 1){
                aq.id(R.id.timer).gone();
                mHandler.removeCallbacks(this);
            }else{
                countDown(c-1);
            }
        }
    }, 1000);
}

This example will set the text of a TextView (timer) every second, counting down. Once it gets to 0, it will remove the the TextView from the UI and disable the countdown. This is only useful for someone who is using recursion, but I arrived here searching for that, so I'm posting my results.

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.