Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.widget.Toast; public class Main { public static void toast(Context context, CharSequence text) { Toast.makeText(context, text, Toast.LENGTH_SHORT).show(); } public static void toast(Context context, CharSequence text, int duration) { Toast.makeText(context, text, duration).show(); } }