Android中咱们经常使用的post()方法大体有两种状况:java
1.若是post方法是handler的,则Runnable执行在handler依附线程中,多是主线程,也多是其余线程
下面是Handler里面的post方法markdown
/** * Causes the Runnable r to be added to the message queue. * The runnable will be run on the thread to which this handler is * attached. * * @param r The Runnable that will be executed. * * @return Returns true if the Runnable was successfully placed in to the * message queue. Returns false on failure, usually because the * looper processing the message queue is exiting. */ public final boolean post(Runnable r){ return sendMessageDelayed(getPostMessage(r), 0); }
2.若是post方法是View的,则必定是运行在主线程中的,由于全部view都自带一个handler,全部handler都有post方法,因此它的Runnable是运行在主线程中的
下面是View中的post方法app
/** * <p>Causes the Runnable to be added to the message queue. * The runnable will be run on the user interface thread.</p> * * @param action The Runnable that will be executed. * * @return Returns true if the Runnable was successfully placed in to the * message queue. Returns false on failure, usually because the * looper processing the message queue is exiting. * * @see #postDelayed * @see #removeCallbacks */ public boolean post(Runnable action) { final AttachInfo attachInfo = mAttachInfo; if (attachInfo != null) { return attachInfo.mHandler.post(action); } // Assume that post will succeed later ViewRootImpl.getRunQueue().post(action); return true; }
例如:Imageview自带一个handler,它有postDelayed方法,因为imageview是主线程上的,因此Runable是运行在主线程中的代码。ide
imageview.postDelayed(new Runnable() { @Override public void run() { Intent mIntent = new Intent(MainActivity.this, SecondActivity.class); startActivity(mIntent); finish(); } }, 2000);