Android UI How to - Run Toast in UI thread








Question

We would like to know how to run Toast in UI thread.

Answer

//  www  .ja v  a2s .  co  m
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();
             }
         });
  }
  
}