Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.widget.Toast; public class Main { private static Toast toast; public static void showToast(Context context, String message) { if (toast == null) { toast = Toast.makeText(context, message, Toast.LENGTH_SHORT); } else { toast.setText(message); } toast.show(); } }