Android Toast Example

Android Toast Example

Toast can be used to display information for the short period of time. You can also create custom toast such as toast displaying image etc.

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

  • public static final int LENGTH_LONG
  • public static final int LENGTH_SHORT

Methods of Toast class

  • public static Toast makeText(Context context, CharSequence text, int duration)
  • public void show ()
  • public void setMargin (float horizontalMargin, float verticalMargin)

Simple example to display the toast

  1. Toast.makeText(getApplicationContext(),"Hello Javatpoint",Toast.LENGTH_SHORT).show();  
Another code:
  1. Toast toast=Toast.makeText(getApplicationContext(),"Hello Javatpoint",Toast.LENGTH_SHORT);  
  2. toast.setMargin(50,50);  
  3. toast.show();  
Here, getApplicationContext() method returns the instance of Context.

Full code of Activity class

Let's see the code to display the toast.
File: MainActivity.java
  1. package com.example.toast;  
  2. import android.os.Bundle;  
  3. import android.app.Activity;  
  4. import android.view.Menu;  
  5. import android.view.View;  
  6. import android.widget.Toast;  
  7.   
  8. public class MainActivity extends Activity {  
  9.      @Override  
  10.         public void onCreate(Bundle savedInstanceState) {  
  11.             super.onCreate(savedInstanceState);  
  12.             setContentView(R.layout.activity_main);  
  13.               
  14.         //Displaying Toast with Hello Javatpoint message  
  15.             Toast.makeText(getApplicationContext(),"Hello Javatpoint",Toast.LENGTH_SHORT).show();  
  16.         }  
  17.   
  18.         @Override  
  19.         public boolean onCreateOptionsMenu(Menu menu) {  
  20.             getMenuInflater().inflate(R.menu.activity_main, menu);  
  21.             return true;  
  22.         }  
  23.   
  24. }  

Output:

android toast example output 1



Android Custom Toast Example

You are able to create custom toast in android. So, you can display some images like congratulations or loss on the toast. It means you are able to customize the toast now.

activity_main.xml

Drag the component that you want to display on the main activity.
File: activity_main.xml
 
<RelativeLayout xmlns:androclass="http://schemas.android.com/apk/res/android"  
    xmlns:tools="http://schemas.android.com/tools"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    tools:context=".MainActivity" >  
  
    <TextView  
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content"  
        android:layout_centerHorizontal="true"  
        android:layout_centerVertical="true"  
        android:text="@string/hello_world" />  
  
</RelativeLayout>  

customtoast.xml

Create another xml file inside the layout directory. Here we are having ImageView and TextView in this xml file.
File: customtoast.xml
 
xml version="1.0" encoding="utf-8"?>  
<LinearLayout xmlns:androclass="http://schemas.android.com/apk/res/android"  
      android:id="@+id/custom_toast_layout"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    android:orientation="vertical"  
    android:background="#F14E23"  
     >  
       
    <ImageView  
        android:id="@+id/custom_toast_image"  
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content"  
        android:contentDescription="@string/hello_world"  
        android:src="@drawable/ic_launcher"/>  
      
<TextView  
        android:id="@+id/custom_toast_message"  
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content"  
        android:contentDescription="@string/Toast"  
        android:text="@string/Toast" />  
</LinearLayout>  

Activity class

Now write the code to display the custom toast.
File: MainActivity.java
 
package com.example.customtoast2;  
import android.os.Bundle;  
import android.app.Activity;  
import android.view.Gravity;  
import android.view.LayoutInflater;  
import android.view.Menu;  
import android.view.View;  
import android.view.ViewGroup;  
import android.widget.Toast;  
  
public class MainActivity extends Activity {  
     @Override  
        public void onCreate(Bundle savedInstanceState) {  
            super.onCreate(savedInstanceState);  
            setContentView(R.layout.activity_main);  
              
        //Creating the LayoutInflater instance  
            LayoutInflater li = getLayoutInflater();  
        //Getting the View object as defined in the customtoast.xml file  
            View layout = li.inflate(R.layout.customtoast,  
              (ViewGroup) findViewById(R.id.custom_toast_layout));  
           
        //Creating the Toast object   
            Toast toast = new Toast(getApplicationContext());  
            toast.setDuration(Toast.LENGTH_SHORT);  
            toast.setGravity(Gravity.CENTER_VERTICAL, 00);  
            toast.setView(layout);//setting the view of custom toast layout  
            toast.show();  
        }  
        @Override  
        public boolean onCreateOptionsMenu(Menu menu) {  
            getMenuInflater().inflate(R.menu.activity_main, menu);  
            return true;  
        }  
  
}  


Output:

android custom toast example output 1 android custom toast example output 2

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | cheap international voip calls