Appinventiv Call Button

How to Create Toasts In Android?

Saurabh Singh
CEO & Director
December 22, 2025
Android App Developers
copied!

Toast is a transient notification that stays visible for a few seconds before fading out. It provides a simple feedback about an operation in a small popup without interrupting the application. We can use Toast for debugging purpose as well.

Toasts are excellent for informing our users of events without forcing them to open an Activity or browse a Notification. They provide a perfect mechanism for alerting users of events occurring in background services without interrupting the foreground applications. Generally, your application should show Toasts only if one of its Activities is active.

Creating Simple (Default) Android Toast :

The Toast class consists of a static make Text method that makes a standard Toast display window.

1. Open “MainActivity.java” file and add following JAVA code.

File :src/package-name/MainActivity.java

MainActivity.javaJava

import android.os.Bundle;

import android.view.View;

import android.widget.Toast;

public class Main Activity extends Activity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

}

public void SimpleToast(View view) {

// Call Toast to show msg

Toast.makeText(this, “Android Simple Toast”, Toast.LENGTH_LONG).show();

}

}

2. Open “res/layout/activity_main.xml” file and put this xml code it into file:

File : res/layout/activity_main.xml

activity_main.xml

XHTML

android:layout_width=”match_parent”

android:layout_height=”match_parent”

>

android:id=”@+id/tv_simple_toast”

android:layout_width=”wrap_content”

android:layout_height=”wrap_content”

android:layout_marginTop=”10dp”

android:padding=”5dp”

android:text=”Android Simple Toast Example” />

android:id=”@+id/btn_click”

android:layout_width=”wrap_content”

android:layout_height=”wrap_content”

android:layout_alignParentLeft=”true”

android:layout_alignParentRight=”true”

android:layout_below=”@+id/tv_simple_toast”

android:layout_marginTop=”41dp”

android:text=”Simple Toast Click”

android:onClick=”SimpleToast”/>

In Android Studio, create a new Toast, pass the current Context, the text message to show and also the length of your time to show (LENGTH_SHORT or LENGTH_LONG) into the make Text method. Once the Toast has been made, you’ll be able to show it by calling show.

Creating a Custom Toast View :

Sometimes a simple text message is not enough, we have to use a customized layout for our toast notification. To make a custom layout, define a view layout, in XML or in your application code and pass the root view object to the set View (View) method.

1. Create “res/layout/mycustom_toast.xml” file and put this xml code it into a file:

File : res/layout/mycustom_toast.xmlCustom_layout

android:orientation=”vertical” android:layout_width=”match_parent”

android:layout_height=”match_parent”

android:background=”#d4ffcd”

android:id=”@+id/custom”

>

android:layout_width=”wrap_content”

android:layout_height=”wrap_content”

android:background=”@drawable/sucess”

android:id=”@+id/iv_success” />

android:layout_width=”match_parent”

android:layout_height=”wrap_content”

android:text=”RECORD SUCESSFULLY SAVED”

android:id=”@+id/tv_record”

android:layout_marginTop=”5dp”

android:textSize=”20dp”

android:layout_gravity=”center_horizontal”

android:layout_alignParentTop=”true”

android:layout_alignParentRight=”true”

android:layout_alignParentEnd=”true”

android:layout_toRightOf=”@+id/iv_success”

android:layout_toEndOf=”@+id/iv_success” />

android:layout_width=”match_parent”

android:layout_height=”wrap_content”

android:text=”CUSTOM TOAST “

android:id=”@+id/tv_custom_toast”

android:textSize=”15dp”

android:layout_marginTop=”5dp”

android:layout_gravity=”center_horizontal”

android:layout_below=”@+id/tv_record”

android:layout_toRightOf=”@+id/iv_success”

android:layout_toEndOf=”@+id/iv_success” />

Custom Toast in java, that Layout of the Toast is “customtoast.xml” call by View.

My Custom Toast

R.id.btn_custom:

//get your custom_toast.xml layout

LayoutInflaterinflater = getLayoutInflater();

View layout = inflater.inflate(R.layout.customtoast,null);

Toast toast = new Toast(getApplicationContext());

toast.setGravity(Gravity.BOTTOM, 0, 0);

toast.setDuration(Toast.LENGTH_LONG);

toast.setView(layout);

toast.show();

Conclusion :

By now, you should be able to create a Taost.

Appinventiv Technologies is the most sought after iOS and Android app development company in India providing top grade mobile application development services across the globe. Appinventiv has been ranked No. 1 in Appfutura which is the most revered community for app developers. It has onboarded the best developers and designers who have a great expertise in the domain of app development.

THE AUTHOR
Saurabh Singh
CEO & Director

With over 15+ years of experience driving large-scale digital initiatives, Saurabh Singh is the CEO and Director of Appinventiv. He specializes in app development, mobile product strategy, app store optimization, monetization, and digital transformation across industries like fintech, healthcare, retail, and media. Known for building scalable app ecosystems that combine intuitive UX, resilient architecture, and business-focused growth models, Saurabh helps startups and enterprises turn bold ideas into successful digital products. A trusted voice in the industry, he guides leaders on aligning product decisions with market traction, retention, and long-term ROI.

Prev PostNext Post
Let's Build Digital Excellence Together
Let's Build Digital Excellence Together
  • In just 2 mins you will get a response
  • Your idea is 100% protected by our Non Disclosure Agreement.
Read More Blogs
AI Center of Excellence

Appinventiv's AI Center of Excellence: Structure, Roles, and Business Impact for Enterprises

Key takeaways: Enterprises struggle less with AI ideas and more with turning those ideas into repeatable outcomes. An AI Center of Excellence provides structure, ownership, and clarity as AI initiatives scale. Clear roles, a practical operating model, and built-in governance are what keep AI programs from stalling. Measuring maturity and business impact helps enterprises decide…

Chirag Bhardwaj
How to Build an EdTech App in Australia

How to Build an EdTech App for Australia: Framework, Features, Cost Structure, & Compliance

Key takeaways: AI implementation in Australian EdTech gains ground when it is transparent, governed, and aligned with emerging regulatory expectations. Realistic EdTech app development costs range from AUD 70,000 to AUD 700,000, driven by compliance, scalability, and long-term support needs. Long-term success relies on modular development, continuous optimisation, and proactive compliance management rather than rushing…

Dileep Gupta
ai software development in dubai

AI Software Development in the UAE: From Pilots to Enterprise-Grade Systems (2026)

Key Takeaways: AI in the UAE is no longer about pilots. By 2026, enterprises care about systems that hold up in real operations, not experiments. Dubai’s AI strength comes from execution, not hype. Integration, governance, and control matter more than flashy models. Enterprise AI projects work best when they start small. One real problem, built…

Sudeep Srivastava