Android 判断当前线程是否是UI主线程

if (Looper.myLooper() == Looper.getMainLooper()) { // UI主线程

} else { // 非UI主线程

}

你可能感兴趣的:(android,UI,线程)