Java tutorial
//package com.java2s; import android.content.Context; import android.widget.Toast; public class Main { public static void makeToast(Context context, String s) { makeToast(context, s, Toast.LENGTH_SHORT); } public static void makeToast(Context context, String s, int length) { Toast.makeText(context, s, length).show(); } public static void makeToast(Context context, int stringResId, int length) { Toast.makeText(context, stringResId, length).show(); } }