custom toast in android 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 studio Toast usage
Context context = getApplicationContext();
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();