why do Toast.makeText rewuire context code example
Example 1: android java toast
Toast.makeText(context this, text "Example of Text", Toast.LENGTH_LONG).show();
Example 2: how to make toast in android
Toast toast = Toast.makeText(this, "message", Toast.LENGTH_LONG;);
toast.show();