Skip to content

Instantly share code, notes, and snippets.

@AnanthaRajuC
Created March 22, 2016 11:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnanthaRajuC/3c202ae69e6e5c9e4c00 to your computer and use it in GitHub Desktop.
Save AnanthaRajuC/3c202ae69e6e5c9e4c00 to your computer and use it in GitHub Desktop.
Context context = getApplicationContext();
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment