Java tutorial
//package com.java2s; import android.os.Looper; public class Main { public static boolean isMainThread() { if (Looper.myLooper() == Looper.getMainLooper()) { return true; } return false; } }