Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Simple Android App (2014) Testing and Debugging Making a Toast

i am unable to solve the toast question

how to use the makeText method of Toast class?

1 Answer

Gavin Ralston
Gavin Ralston
28,770 Points

Well, in one of the projects you create it, generate the text, and show it all in one shot like so:

Toast.makeText(this,
             R.string.network_unavailable_message,
             Toast.LENGTH_LONG)
             .show();

That'll create the toast by plugging in the context ("this", which means "this activity"), then give it a message, in this case it's a string in the strings.xml file which is why we're looking up R.string.... Then we set the message, and then chain the .show() method right on the end and just show it, rather than storing it somewhere for use.

For a simpler example the Android Developers Toast Guide works pretty well. For example, here's their first example:

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

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