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