toast in adapter android 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 messag eandroid
Toast.makeText(context, text, duration).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();
Example 4: android java toast
Toast.makeText(this, "Mmm Toasty", Toast.LENGTH_LONG).show();