Here you can find the source of makeToast(String msg, int length, Activity mainAct)
public static void makeToast(String msg, int length, Activity mainAct)
//package com.java2s; import android.app.Activity; import android.widget.Toast; public class Main { public static void makeToast(String msg, int length, Activity mainAct) { Toast.makeText(mainAct, msg, length).show(); }//from www . j a v a 2 s.c o m }