Here you can find the source of toast(Context context, String text)
public static final void toast(Context context, String text)
//package com.java2s; import android.content.Context; import android.widget.Toast; public class Main { public static final void toast(Context context, String text) { Toast.makeText(context, text, Toast.LENGTH_SHORT).show(); }/*from ww w.ja va2 s .co m*/ }