Here you can find the source of toast(Context c, String msg)
public static void toast(Context c, String msg)
//package com.java2s; import android.content.Context; import android.widget.Toast; public class Main { public static void toast(Context c, String msg) { Toast.makeText(c, msg, Toast.LENGTH_SHORT).show(); }/*from w w w . j a v a 2 s .c o m*/ }