ActivityThread源碼:
151 public final class ActivityThread {
2202 private Activity performLaunchActivity(ActivityClientRecord r, Intent customIntent) {
2253 if (activity != null) {
2259 activity.attach(appContext, this, ..., );
5219 public static void main(String[] args) {
// 在這兒調用 Looper.prepareMainLooper, 為應用的主線程創建Looper
5240 Looper.prepareMainLooper();
5242 ActivityThread thread = new ActivityThread();
5245 if (sMainThreadHandler == null) {
5246 sMainThreadHandler = thread.getHandler();
5247 }
5254 Looper.loop();
5257 }
5258}
Looper源碼:
52 public final class Looper {
// 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: prepare()
87 public static void prepareMainLooper() {
88 prepare(false);
89 synchronized (Looper.class) {
90 if (sMainLooper != null) {
91 throw new IllegalStateException("The main Looper has already been prepared.");
92 }
93 sMainLooper = myLooper();
94 }
95 }
Activity源碼:
660 public class Activity extends ContextThemeWrapper {
699 /*package*/ ActivityThread mMainThread;
5922 final void attach(Context context, ActivityThread aThread, ..., ) {
5944 mMainThread = aThread;