Java tutorial
//package com.java2s; import android.content.Context; import android.widget.Toast; public class Main { public static void showToast(Context context, String text, int longint) { // TODO Auto-generated method stub Toast.makeText(context, text, longint).show(); } public static void showToast(Context context, String text) { // TODO Auto-generated method stub Toast.makeText(context, text, Toast.LENGTH_SHORT).show(); } }