Java tutorial
//package com.java2s; import android.content.Context; import android.widget.Toast; public class Main { /** * Shows a short toast * * @param context: The current context * @param msg: The toast's message */ public static void showShortToast(Context context, CharSequence msg) { Toast.makeText(context, msg, Toast.LENGTH_SHORT).show(); } }