make 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: toast code in android studio
Toast toast = Toast.makeText(this, "message", Toast.LENGTH_LONG;);
toast.show();
Example 3: android java toast
Toast.makeText(context this, text "Example of Text", Toast.LENGTH_LONG).show();
Example 4: Toast messag eandroid
Toast.makeText(context, text, duration).show();