Java tutorial
//package com.java2s; import android.content.Context; import android.widget.Toast; public class Main { public static void showToast(Context theContext, String theMessage) { Toast toast = Toast.makeText(theContext, theMessage, Toast.LENGTH_SHORT); toast.show(); } }