use toast in android studio code example
Example 1: android studio java toast
Toast.makeText(Activity.this, "I am Awesome!", Toast.LENGTH_SHORT).show();
Example 2: android java toast
Toast.makeText(context this, text "Example of Text", Toast.LENGTH_LONG).show();