tags:

views:

38

answers:

1

How do I remove a queued message of a given type from a handler's message queue?

+2  A: 

Any of the remove*() methods will do :) (http://developer.android.com/reference/android/os/Handler.html)

Romain Guy