android app toast message code example
Example 1: Toast messag eandroid
Toast.makeText(context, text, duration).show();
Example 2: toast.maketext
Context context = getApplicationContext();
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();