Toast is the notification or message that views the user's activity. It fades in and out for a short period of time only. It does not carry any user action. 

Example:

Toast.makeText(this, "Message you want to display", Toast.LENGTH_SHORT/LENGTH_LONG).show();

Suggested Papers: