Android examples for android.widget:Toast
run Toast In UI Thread
import android.app.Activity; import android.content.Context; import android.widget.Toast; public class Main { public static void runInUIThread(Context context, final Toast toast) { final Activity activity = (Activity) context; activity.runOnUiThread(new Runnable() { public void run() { toast.show();//from www .j a v a 2 s. c om } }); } }