android studio toast fragment code example
Example 1: toast code in android studio
Toast toast = Toast.makeText(this, "message", Toast.LENGTH_LONG;);
toast.show();
Example 2: how to make a toast in a fragment kotlin
Toast.makeText(activity, "Toast", Toast.LENGTH_SHORT).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();