User Interactions in Android
Toast Messages in Android
A Toast is a simple popup message in Android.
We use the maketext() method to instantiate a Toast, and show() method to display the Toast.
//Toast.makeText(context, text, duration).show()
Toast.makeText(this, "Sending messa...
androidguide.hashnode.dev2 min read