Here you can find the source of showAlertText(String alertText, Context context)
public static void showAlertText(String alertText, Context context)
//package com.java2s; import android.content.Context; import android.widget.Toast; public class Main { public static void showAlertText(String alertText, Context context) { Toast.makeText(context, alertText, Toast.LENGTH_LONG).show(); }//from ww w . ja v a 2 s . com }