Here you can find the source of toast(final Context context, final CharSequence msg)
public static void toast(final Context context, final CharSequence msg)
//package com.java2s; import android.content.Context; import android.os.Handler; import android.os.Looper; import android.widget.Toast; public class Main { public static void toast(final Context context, final CharSequence msg) { new Handler(Looper.getMainLooper()).post(new Runnable() { @Override//from ww w. jav a 2 s . c o m public void run() { Toast.makeText(context, msg, Toast.LENGTH_LONG).show(); } }); } }