Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.widget.Toast; public class Main { 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(); } }