toast method in android example
Example 1: java android show toast
Toast myToast = Toast.makeText(this, "I'm a toast!", Toast.LENGTH_LONG);
myToast.show();
Example 2: android java toast
Toast.makeText(this, "Mmm Toasty", Toast.LENGTH_LONG).show();