Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.widget.Toast; public class Main { public static void toastS(Context context, String msg) { toast(context, msg, Toast.LENGTH_SHORT); } public static void toastS(Context context, int msgRes) { toast(context, msgRes, Toast.LENGTH_SHORT); } private static void toast(Context context, String msg, int lenth) { Toast.makeText(context, msg, lenth).show(); } private static void toast(Context context, int msgRes, int lenth) { Toast.makeText(context, msgRes, lenth).show(); } }