Android在子线程中切换到主线程

最近在使用Volley代码的过程中,发现Volley使用的线程调度方法,在不使用Rxjava时可以使用如下代码切换线程:

if (Looper.myLooper() != Looper.getMainLooper()) {
                // If we finish marking off of the main thread, we need to
                // actually do it on the main thread to ensure correct ordering.
                Handler mainThread = new Handler(Looper.getMainLooper());
                mainThread.post(new Runnable() {
                    @Override
                    public void run() {
                        mEventLog.add(tag, threadId);
                        mEventLog.finish(this.toString());
                    }
                });
                return;
            }

你可能感兴趣的:(Android在子线程中切换到主线程)