I am creating a test application and am using toasts to validate my tests. I usually define a toast as follows:
Toast.makeText(this, "Texto que eu quero que apareça",Toast.LENGTH_SHORT).show();
Is there any way to change the text of a toast while it is still being displayed?
When I try to simply send another toast to be displayed, the first toast needs to disappear before the other one appears, I would like to know how to change it. >