Multi-line toast

To put toast message over more than one line:

 

Toast.makeText(MainActivity.this,
"Line1 : " + string1 + "\n"
+ "Line 2: " + string2, 
Toast.LENGTH_LONG).show();
This entry was posted in Android. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *