0% found this document useful (0 votes)
5 views2 pages

Android Toast Usage and Examples

Android Toast is a feature used to display brief messages that disappear after a short duration without blocking user interaction. The Toast class has two constants, LENGTH_LONG and LENGTH_SHORT, to define the display duration, and includes methods like makeText() for creating toasts and show() for displaying them. Custom toasts can also be created, such as those that include images.

Uploaded by

silentworld966
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views2 pages

Android Toast Usage and Examples

Android Toast is a feature used to display brief messages that disappear after a short duration without blocking user interaction. The Toast class has two constants, LENGTH_LONG and LENGTH_SHORT, to define the display duration, and includes methods like makeText() for creating toasts and show() for displaying them. Custom toasts can also be created, such as those that include images.

Uploaded by

silentworld966
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Android Toast Example

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 [Link] class is the subclass of [Link] 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.

Constant Description

public static final int LENGTH_LONG displays view for the long duration of time.

public static final int LENGTH_SHORT displays view for the short duration of time.

Methods of Toast class

The widely used methods of Toast class are given below.

Method Description

public static Toast makeText(Context context, makes the toast containing text and
CharSequence text, int duration) duration.

Developed By: Bansi Bhanvadiya Page 1


public void show() displays toast.

public void setMargin (float horizontalMargin, float changes the horizontal and vertical
verticalMargin) margin difference.

Android Toast Example


1. [Link](getApplicationContext(),"Hello Javatpoint",Toast.LENGTH_SHO
RT).show();
Here, getApplicationContext() method returns the instance of Context.

Developed By: Bansi Bhanvadiya Page 2

You might also like