make toast android kotlin code example
Example 1: toast in kotlin
Toast.makeText(applicationContext, "Hello", Toast.LENGTH_LONG).show()
Example 2: kotlin toast.maketext
Toast.makeText(this, ".....", Toast.LENGTH_SHORT).show
Example 3: how to make toast in android
Toast toast = Toast.makeText(this, "message", Toast.LENGTH_LONG;);
toast.show();