example toast for android studio
Example 1: toast code in android studio
Toast toast = Toast.makeText(this, "message", Toast.LENGTH_LONG;);
toast.show();
Example 2: android java toast
Toast.makeText(context this, text "Example of Text", Toast.LENGTH_LONG).show();