toast java code example

Example 1: java android show toast

Toast myToast = Toast.makeText(this, "I'm a toast!", Toast.LENGTH_LONG);
myToast.show();

Example 2: toast java example

Toast.makeText(getApplicationContext(),"Hello Javatpoint",Toast.LENGTH_SHORT).show();

Example 3: toast code in android studio

Toast toast = Toast.makeText(this, "message", Toast.LENGTH_LONG;);
    toast.show();

Example 4: Toast messag eandroid

Toast.makeText(context, text, duration).show();

Tags:

Misc Example