Answers for "toast make"

2

toast

val text = "Hello toast!"
val duration = Toast.LENGTH_SHORT

val toast = Toast.makeText(applicationContext, text, duration)
toast.show()
Posted by: Guest on October-19-2021

Browse Popular Code Answers by Language