Last active
November 9, 2016 12:08
-
-
Save Vitnere/bd5e589dd96f34a38c2d599938164fde to your computer and use it in GitHub Desktop.
Toast
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Context context = getApplicationContext(); | |
CharSequence text = "Minimum is 1 coffee!"; | |
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