Here you can find the source of showToast(Activity activity, String message)
public static void showToast(Activity activity, String message)
//package com.java2s; //License from project: Open Source License import android.app.Activity; import android.widget.Toast; public class Main { public static void showToast(Activity activity, String message) { Toast.makeText(activity.getApplicationContext(), message, Toast.LENGTH_SHORT).show(); }// w w w .j av a2s .c om }