make toast in fragment android code example
Example 1: how to make toast in android
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()