Toast

Add a toast message

Context context = getApplicationContext(); // Or MainActivity.this or whatever
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_SHORT; // Alternatively LENGTH_LONG

Toast toast = Toast.makeText(context, text, duration);
toast.show(); // Don't forget this bit