Toast is a small message displayed on the screen
A Toast is displayed on top of the main activity, and only remains visible for a short time period
Note: Toast is written in .java file (like MainActivity.java) not in xml layout
Example :
Toast.makeText(getApplicationContext(), "Saved", Toast.LENGTH_SHORT).show();
Post a Comment