Toast




A Toast is a popup message that shows briefly on the screen.

Example:

public void myButtonClick(View v)
{
   Toast.makeText(this, "You clicked me!", Toast.LENGTH_SHORT).show();
}