Would anyone know how to test for the appearance of a Toast message on an Activity?
I\'m using code similar to what the OP posted on this question for testing my pro
I check, the following works:
if(someToast == null) someToast = Toast.makeText(this, "sdfdsf", Toast.LENGTH_LONG); boolean isShown = someToast.getView().isShown();