I\'ve been using a common \"myToast\" which I use \"myToast.cancel() prior to issuing a new toast. For Android v2.3 and older, this works great. When a new toas
myToast.cancel()
Instead of calling cancel(). Try resetting the text and call show(). This should cancel the last toast by itself
cancel()
show()
myToast.setText("wrong key") myToast.show();
If you keep using the same myToast instead of creating one every time I guess they won't stack up.
myToast