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