Java tutorial
//package com.java2s; import android.content.Context; import android.widget.Toast; public class Main { private static Toast toast; public static void showToast(Context context, String text, int duration) { if (toast != null) { toast.cancel(); } toast = Toast.makeText(context, text, duration); toast.show(); } }