Android Toast Message is not showing

Try:

Toast.makeText(getBaseContext(), "Reason can not be blank", Toast.LENGTH_SHORT).show();

It’s the .show() that you’ve omitted everywhere that causes all your toasts to instatiate, but never execute.

Leave a Comment