Android - Toast (popup)

Card Puncher Data Processing

About

A toast provides simple feedback about an operation in a small popup.

Example

Context context = getApplicationContext();
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_SHORT;

Toast toast = Toast.makeText(context, text, duration);
toast.show();

Documentation / Reference





Discover More
Card Puncher Data Processing
Android - Event Handling

Views object handle events. with: a list view a toast when an item on the list is clicked



Share this page:
Follow us:
Task Runner