zer0stimulus
zer0stimulus

Reputation: 23616

Pull a message from an Android handler

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

Upvotes: 1

Views: 407

Answers (1)

Romain Guy
Romain Guy

Reputation: 98501

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

Upvotes: 2

Related Questions