Looks for code creating a Toast but forgetting to call show() on it
Toast
show()
Toast.makeText() creates a Toast but does not show it. You must call show() on the resulting object to actually make the Toast appear.
Toast.makeText()