Android中檢測當(dāng)前是否為主線程最可靠的解決方法
如果在Android中判斷某個線程是否是主線程?對于這個問題,你可能說根據(jù)線程的名字,當(dāng)然這個可以解決問題,但是這樣是最可靠的么?萬一某天Google一下子將線程的名字改稱其他神馬東西呢。
方法揭曉
下面的方法是最可靠的解決方案。
public static boolean isInMainThread() {
return Looper.myLooper() == Looper.getMainLooper();
}
實際上,寫到這里就基本解決了文章標(biāo)題的問題了,但是僅僅研究到這里太膚淺了,刨的不夠深,所以需要繼續(xù),希望你也可以繼續(xù)讀下去。
刨根問底
實驗一
好,現(xiàn)在,我們對這個穩(wěn)定的方法做一些測試,首先,下面的方法會增加一些調(diào)試打印信息。
private boolean isInMainThread() {
Looper myLooper = Looper.myLooper();
Looper mainLooper = Looper.getMainLooper();
Log.i(LOGTAG, "isInMainThread myLooper=" + myLooper
+ ";mainLooper=" + mainLooper);
return myLooper == mainLooper;
}
好,然后我們在主線程中運行一個測試,調(diào)用上述方法。比如我們這樣調(diào)用。
Log.i(LOGTAG, "testInMainThread inMainThread=" + isInMainThread());
OK,我們看一下輸出日志。驗證OK。
I/TestInMainThread(32028): isInMainThread myLooper=Looper{40d35ef8};mainLooper=Looper{40d35ef8}
I/TestInMainThread(32028): testInMainThread inMainThread=true
實驗二
現(xiàn)在我們繼續(xù)在一個沒有消息循環(huán)的非主線程,進(jìn)行驗證。
new Thread() {
@Override
public void run() {
Log.i(LOGTAG, "testIn NOT in MainThread isMainThread="
+ isInMainThread());
super.run();
}
}.start();
正如我們看到的如下日志結(jié)果,主線程的Looper(翻譯成循環(huán)泵,不是很好聽)已經(jīng)被初始化賦值。但是我們新創(chuàng)建的線程的looper還是null。這是因為Android中的線程默認(rèn)沒有一個和它綁定了的消息循環(huán)(Threads by default do not have a message loop associated with them. Of course, the method works)
I/TestInMainThread(32028): isInMainThread myLooper=null;mainLooper=Looper{40d35ef8}
I/TestInMainThread(32028): testIn NOT in MainThread isMainThread=false
實驗三
繼續(xù),我們創(chuàng)建一個綁定了消息循環(huán)的線程,根據(jù)Android開發(fā)者文檔說明,以下是一個典型的創(chuàng)建消息循環(huán)線程的示例,使用單獨prepare()方法和loop()方法來創(chuàng)建一個綁定到Looper的Handler。
new Thread() {
private Handler mHandler;
@Override
public void run() {
Looper.prepare();
mHandler = new Handler() {
public void handleMessage(Message msg) {
// process incoming messages here
}
};
Log.i(LOGTAG, "testInNonMainLooperThread isMainThread="
+ isInMainThread());
Looper.loop();
}
}.start();
OK,現(xiàn)在再次檢查以下日志,
I/TestInMainThread(32028): isInMainThread myLooper=Looper{40d72c58};mainLooper=Looper{40d35ef8}
I/TestInMainThread(32028): testInNonMainLooperThread isMainThread=false
兩個Looper都被初始化賦值了,但是他們是不同的對象。
原理發(fā)掘
但是,這是為什么呢,這里面有什么奧秘呢? 好,讓我們看以下Looper.class
// sThreadLocal.get() will return null unless you've called prepare().
static final ThreadLocal<Looper> sThreadLocal = new ThreadLocal<Looper>();
private static Looper sMainLooper; // guarded by Looper.class
/**
* Initialize the current thread as a looper, marking it as an
* application's main looper. The main looper for your application
* is created by the Android environment, so you should never need
* to call this function yourself. See also: {@link #prepare()}
*/
public static void prepareMainLooper() {
prepare(false);
synchronized (Looper.class) {
if (sMainLooper != null) {
throw new IllegalStateException("The main Looper has already been prepared.");
}
sMainLooper = myLooper();
}
}
private static void prepare(boolean quitAllowed) {
if (sThreadLocal.get() != null) {
throw new RuntimeException("Only one Looper may be created per thread");
}
sThreadLocal.set(new Looper(quitAllowed));
}
/**
* Return the Looper object associated with the current thread.
* Returns null if the calling thread is not associated with a Looper.
*/
public static Looper myLooper() {
return sThreadLocal.get();
}
/** Returns the application's main looper, which lives in the main thread of the application.
*/
public static Looper getMainLooper() {
synchronized (Looper.class) {
return sMainLooper;
}
}
對于主線程來說,prepareMainLooper這個方法會被Android運行環(huán)境調(diào)用,而不是程序顯式調(diào)用。通過這個方法,主線程的looper被創(chuàng)建,并且將對象引用傳遞給sMainLooper。所以保證了主線程myLooper()獲取到的引用和getMainLooper()獲取到的都是同一個引用。
對于沒有消息循環(huán)的非主線程,默認(rèn)的當(dāng)前線程的looper是null,因為你從來沒有手動地調(diào)用prepare(),所以它和主線程的looper不一樣。
對于綁定了消息循環(huán)的非主線程,當(dāng)調(diào)用Looper.prepare方法時,主線程的Looper已經(jīng)由Android運行環(huán)境創(chuàng)建,當(dāng)調(diào)用prepare方法后,綁定到這個非主線程的looper被創(chuàng)建,當(dāng)然,這不可能和主線程的Looper一樣。
綜上所述,這個方法是可靠的。
相關(guān)文章
Android 中 SwipeLayout一個展示條目底層菜單的側(cè)滑控件源碼解析
這篇文章主要介紹了Android 中 SwipeLayout一個展示條目底層菜單的側(cè)滑控件源碼解析,需要的朋友可以參考下2016-12-12Android JNI c/c++調(diào)用java的實例
這篇文章主要介紹了Android JNI c/c++調(diào)用java的實例的相關(guān)資料,需要的朋友可以參考下2017-07-07Android多功能時鐘開發(fā)案例(實戰(zhàn)篇)
這篇文章主要為大家詳細(xì)介紹了Android多功能時鐘開發(fā)案例,開發(fā)了時鐘、鬧鐘、計時器和秒表,具有一定的參考價值,感興趣的小伙伴們可以參考一下2016-05-05Android實現(xiàn)旋轉(zhuǎn),放大,縮小圖片的方法
這篇文章主要介紹了Android實現(xiàn)旋轉(zhuǎn),放大,縮小圖片的方法,結(jié)合實例形式分析了Android基于Drawable針對圖片的縮放與旋轉(zhuǎn)等處理技巧,具有一定參考借鑒價值,需要的朋友可以參考下2016-10-10