0
How can a toast be done?
For example, when you reply to someone's status on whatsapp, you'll a kinda notification in a black 1-D cylinder and in it is written "sending reply". How is it programmed?
3 Respuestas
0
Using AJAX I presume.
0
Explain better
0
Toast.makeText(this, "your text", Toast.LENGTH_LONG).show();
In this case (this) is your application Context
You need to call .show() to display the Toast