前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Check if a Thread Is Main Thread in Android

Check if a Thread Is Main Thread in Android

作者头像
技术小黑屋
发布2018-09-04 16:40:28
1.4K0
发布2018-09-04 16:40:28
举报
文章被收录于专栏:技术小黑屋

How to check a certain thread is the main one or not in Android? You may say it could be determined by checking the name. Yes, It may resolve the problem. However I think it’s not reliable.

This is the most reliable workaround.

1 2 3

public static boolean isInMainThread() { return Looper.myLooper() == Looper.getMainLooper(); }

Actually the above code could already resolve your problem. If you want to know more details, please go on reading this post. Now Let’s do some tests to check the reliability of this method. This the method with additional debug log

1 2 3 4 5 6 7

private boolean isInMainThread() { Looper myLooper = Looper.myLooper(); Looper mainLooper = Looper.getMainLooper(); Log.i(LOGTAG, "isInMainThread myLooper=" + myLooper + ";mainLooper=" + mainLooper); return myLooper == mainLooper; }

Now we run this test case. Of course we assume that the following code is running in the main thread.

1

Log.i(LOGTAG, "testInMainThread inMainThread=" + isInMainThread());

Look at the output log. It works well.

1 2

I/TestInMainThread(32028): isInMainThread myLooper=Looper{40d35ef8};mainLooper=Looper{40d35ef8} I/TestInMainThread(32028): testInMainThread inMainThread=true

Now we are going to check the method running in a non-main thread without a message loop.

1 2 3 4 5 6 7 8

new Thread() { @Override public void run() { Log.i(LOGTAG, "testIn NOT in MainThread isMainThread=" + isInMainThread()); super.run(); } }.start();

As we can see from the below output. the main looper has been assigned. However the looper associated with the current thread is Null. That’s because Threads by default do not have a message loop associated with them. Of course, the method works.

1 2

I/TestInMainThread(32028): isInMainThread myLooper=null;mainLooper=Looper{40d35ef8} I/TestInMainThread(32028): testIn NOT in MainThread isMainThread=false

Then, Now we create a thread with a message loop. And let’s have a check. According to Android Developer Docs, This is a typical example of the implementation of a Looper thread, using the separation of prepare() and loop() to create an initial Handler to communicate with the Looper.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

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();

Now both the looper bound to the current thread and the main looper has been assigned. However the are different. That’s right; and the method still works.

1 2

I/TestInMainThread(32028): isInMainThread myLooper=Looper{40d72c58};mainLooper=Looper{40d35ef8} I/TestInMainThread(32028): testInNonMainLooperThread isMainThread=false

But why? And what ’s inside? Let’s see the code what’s is inside the Looper.class.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

// 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; } }

For the main thread, the prepareMainLooper method will be called by the Android Environment not by developers. In this way, the looper associated with the main thread is created and passed the reference to the sMainLooper; thus this could guarantee the two looper equals, actually the are the same one.

For non-main thread without a message loop, the looper bound to the current thread is null, because you never call the prepare by yourself. Of course the two looper are different.

For non-main thread with a message loop, Before calling the Lopper.prepare method, the main looper is already assigned. And by calling this method, a looper bound to the current thread is created. And Of course, it is not the main looper.

The above code makes sense.

References:

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档