Java tutorial
//package com.java2s; //License from project: Apache License import android.app.Fragment; import android.widget.Toast; public class Main { /** * Shows a {@link Toast} on the UI thread. * * @param text The message to show */ public static void showToast(final Fragment fragment, final String text) { if (fragment.getActivity() != null) { fragment.getActivity().runOnUiThread(new Runnable() { @Override public void run() { Toast.makeText(fragment.getActivity(), text, Toast.LENGTH_SHORT).show(); } }); } } }