Here you can find the source of isUIThread(Context context)
public static boolean isUIThread(Context context)
//package com.java2s; import android.content.Context; public class Main { public static boolean isUIThread(Context context) { return Thread.currentThread().equals( context.getMainLooper().getThread()); }//from www. j a v a 2 s . c om }