91-9990449935 0120-4256464 |
Android Toast ExampleAndorid 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 classToast 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 classThere are only 2 constants of Toast class which are given below.
Methods of Toast classThe widely used methods of Toast class are given below.
Android Toast ExampleAnother code: Here, getApplicationContext() method returns the instance of Context. Full code of activity class displaying ToastLet's see the code to display the toast. File: MainActivity.java
Output:
Next TopicAndroid Custom Toast Example
|