Javatpoint Logo
Javatpoint Logo

Android Toast Example

android toast

Andorid Toast can be used to display information for the short period of time. A toast contains message to be displayed quickly and disappears after sometime.

The android.widget.Toast class is the subclass of java.lang.Object class.

You can also create custom toast as well for example toast displaying image. You can visit next page to see the code for custom toast.


Toast class

Toast class is used to show notification for a particular interval of time. After sometime it disappears. It doesn't block the user interaction.

Constants of Toast class

There are only 2 constants of Toast class which are given below.

ConstantDescription
public static final int LENGTH_LONGdisplays view for the long duration of time.
public static final int LENGTH_SHORTdisplays view for the short duration of time.

Methods of Toast class

The widely used methods of Toast class are given below.

MethodDescription
public static Toast makeText(Context context, CharSequence text, int duration)makes the toast containing text and duration.
public void show()displays toast.
public void setMargin (float horizontalMargin, float verticalMargin)changes the horizontal and vertical margin difference.

Android Toast Example

Another code:

Here, getApplicationContext() method returns the instance of Context.


Full code of activity class displaying Toast

Let's see the code to display the toast.

File: MainActivity.java

Output:

android toast example output 1






Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA