Java tutorial
//package com.java2s; import android.content.Context; import android.widget.Toast; public class Main { private static Toast toast; public static Toast showToast(Context context, String msg, int length) { if (toast == null) { toast = Toast.makeText(context, msg, length); } else { toast.setText(msg); } return toast; } }