Skip to content

Instantly share code, notes, and snippets.

@64lines
Last active August 5, 2016 04:59
Show Gist options
  • Select an option

  • Save 64lines/e0f82b9ebee4879b4ff4a547e0a49ede to your computer and use it in GitHub Desktop.

Select an option

Save 64lines/e0f82b9ebee4879b4ff4a547e0a49ede to your computer and use it in GitHub Desktop.
Show Toast Alert with Android
private void showAlert(String text, int duration) {
Context context = getApplicationContext();
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