Activity的启动流程

activity 的启动流程
ActivityManagerService(ActivityManagerNative)
ActivityStackSupervisor 管理整个手机任务栈
ActivityStack Activity的栈(任务栈)
PackageManagerService(完成组件在清单里的扫描和注册)
ActivityThread(安卓java应用层的入口函数类)
C/S 架构思想
ServiceManager
多进程多任务多窗口多app
分模块思想
Activity
分层次思想

在Activity里面启动应用最终会走到startActivityForResult()

1、Activity#startActivityForResult()

mInstrumentation.execStartActivity(
                   this, mMainThread.getApplicationThread(), mToken, this,
                   intent, requestCode, options);
  • mInstrumentation是Activity的成员变量,它用来监控应用程序和系统的交互;

  • mMainThread也是Activity的成员变量,都是通过attach()方法在ActivityThread创建Activity的时候传递给Activity作为成员变量。

  • mMainThread.getApplicationThread(),获取到的是ApplicationThread类型的对象,他是Activty的一个内部类,继承于ApplicationThreadNative,是一个binder对象ActivityThread远程交互存根,ActivityManagerService(继承于ActivityManagerNative)会使用它来和ActivityThread来进行进程间通信,Activity、Service的创建、生命周期都是它与系统ActivityManagerService来交互的

2、Instrumentation#execStartActivity()

int result = ActivityManagerNative.getDefault()//拿到ActivityManagerServiece的远程代理
                .startActivity(whoThread, who.getBasePackageName(), intent,
                        intent.resolveTypeIfNeeded(who.getContentResolver()),
                        token, target != null ? target.mEmbeddedID : null,
                        requestCode, 0, null, options);
  • ActivityManagerNative.getDefault()拿到的是ActivityManagerService(通过ManagerService)系统服务在当先进程的本地代理(Proxy),startActivity()调用的是ActivityManagerProxy.startActivity方法。
Parcel data = Parcel.obtain();
        Parcel reply = Parcel.obtain();
        data.writeInterfaceToken(IActivityManager.descriptor);
        data.writeStrongBinder(caller != null ? caller.asBinder() : null);
        data.writeString(callingPackage);
        intent.writeToParcel(data, 0);
        data.writeString(resolvedType);
        data.writeStrongBinder(resultTo);
        data.writeString(resultWho);
        data.writeInt(requestCode);
        data.writeInt(startFlags);
        if (profilerInfo != null) {
            data.writeInt(1);
            profilerInfo.writeToParcel(data, Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
        } else {
            data.writeInt(0);
        }
        if (options != null) {
            data.writeInt(1);
            options.writeToParcel(data, 0);
        } else {
            data.writeInt(0);
        }
        mRemote.transact(START_ACTIVITY_TRANSACTION, data, reply, 0);

可以看到这里就就是进行进程间通讯了

  • whoThread:ApplicationThread,一个binder对象,作为参数将会传递到AcitivityMangerService远程服务中,后面会用此作为远程回调,在AtivityThread中对Activity的生命周期的控制都是在这个类里面。
  • 另外传入的参数还有intent、应用包名等等。

开始跨进程

3、ActivityManagerService#startActivity()
通过上一步就调用到ActivityManagerService中来,属于系统服务进程,已经进行了跨进程操作。

@Override
    public final int startActivity(IApplicationThread caller, String callingPackage,
            Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
            int startFlags, ProfilerInfo profilerInfo, Bundle options) {
        return startActivityAsUser(caller, callingPackage, intent, resolvedType, resultTo,
            resultWho, requestCode, startFlags, profilerInfo, options,
            UserHandle.getCallingUserId());
    }

@Override
    public final int startActivityAsUser(IApplicationThread caller, String callingPackage,
            Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
            int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) {
        enforceNotIsolatedCaller("startActivity");
        userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(), userId,
                false, ALLOW_FULL_ONLY, "startActivity", null);
        // TODO: Switch to user app stacks here.
        return mStackSupervisor.startActivityMayWait(caller, -1, callingPackage, intent,
                resolvedType, null, null, resultTo, resultWho, requestCode, startFlags,
                profilerInfo, null, null, options, false, userId, null, null);
    }

ActivityStackSupervsior是用用来管理手机所有的Activity的栈信息的一个类

4、ActivityStackSupervsior.startActivityMayWait()

// Collect information about the target of the Intent.
ActivityInfo aInfo =
                resolveActivity(intent, resolvedType, startFlags, profilerInfo, userId);

resolveActivity{
        try {
            ResolveInfo rInfo =
                AppGlobals.getPackageManager().resolveIntent(
                        intent, resolvedType,
                        PackageManager.MATCH_DEFAULT_ONLY
                                    | ActivityManagerService.STOCK_PM_FLAGS, userId);
            aInfo = rInfo != null ? rInfo.activityInfo : null;
        } catch (RemoteException e) {
            aInfo = null;
        }
    if (aInfo != null) {
            // Store the found target back into the intent, because now that
            // we have it we never want to do this again.  For example, if the
            // user navigates back to this point in the history, we should
            // always restart the exact same activity.
            intent.setComponent(new ComponentName(
                    aInfo.applicationInfo.packageName, aInfo.name));
}

AppGlobals.getPackageManager()拿到PackageManagerService系统服务,去扫描所有的app(IPC),拿到符合intent匹配规则的Activity的相关信息保存到aInfo中。aInfo是一个ActivityInfo类型,他包含了在Manifest中注册Activity的所有信息和一些其他启动需要的信息。

5、ActivityStackSupervsior.startActivityLocked
验证intent、Class、Permission等
保存将要启动的Activity的Record

//把启动的应用的进程信息保存到callerApp中
callerApp = mService.getRecordForAppLocked(caller);

ProcessRecord callerApp 保存的是启动应用的进程信息,反正xxxRecord顾名思义就是用来记录信息用的。
ActivityRecord保存了Activity所需要的很多的信息
startActivityUncheckedLocked():

{
int launchFlags = intent.getFlags();
if (r.resultTo != null && (launchFlags & Intent.FLAG_ACTIVITY_NEW_TASK) != 0
                && r.resultTo.task.stack != null) {
            // For whatever reason this activity is being launched into a new
            // task...  yet the caller has requested a result back.  Well, that
            // is pretty messed up, so instead immediately send back a cancel
            // and let the new task continue launched as normal without a
            // dependency on its originator.
            Slog.w(TAG, "Activity is launching as a new task, so cancelling activity result.");
            r.resultTo.task.stack.sendActivityResultLocked(-1,
                    r.resultTo, r.resultWho, r.requestCode,
                    Activity.RESULT_CANCELED, null);
            r.resultTo = null;
        }
}

检查将要启动的Activity的launchMode和启动Flag,根据launcheMode和Flag配置task

6、ActivityStack.startActivityLocked()
去检查是否要简历新的任务栈

7、ActivityStackSupervsior.resumeTopActivityLocked()
查找需要暂停的Activity。

8、ActivityStack---------->startPausingLocked()

prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
                        userLeaving, prev.configChangeFlags, dontWait);
这里调用到ActivityThread的ApplicationThread的远对象,进行进程间通讯

正式让之前的Activity暂停
告诉AMS已经暂停完成

9.ApplicationThread.handlePauseActivity()
在用户进程执行performPauseActivity(token, finished, r.isPreHoneycomb());最终调用Activity的onPause(),等到Activity暂停之后再次和AMS进程通信调用:ActivityManagerNative.getDefault().activityPaused(token);告诉AMS Activity已经暂停,可以启动新的Activity。

10、AMS-->activityPaused()
11.ActivityStack->activityPausedLocked()->finishCurrentActivityLocked()
12.ActivityStackSuperVisor------> resumeTopActivitiesLocked()
13.ActivityStack----------------> resumeTopActivityLocked()
该进程不存在,创建进程
14.ActivityStackSuperVisor------> startSpecificActivityLocked()
15.ActivityManagerService-------> startProcessLocked()
16.Process.start()
这里主要是调用Process.start接口来创建一个新的进程,新的进程会导入android.app.ActivityThread类,并且执行它的main函数,这就是为什么我们前面说每一个应用程序都有一个ActivityThread实例来对应的原因

17.ActivityThread.main()
18.AMS.attachApplication();
函数attach最终调用了ActivityManagerService的远程接口ActivityManagerProxy的attachApplication函数,传入的参数是mAppThread,这是一个ApplicationThread类型的Binder对象,它的作用是用来进行进程间通信的
19 ActivityManagerProxy.attachApplication
20.ActivityManagerService.attachApplicationLocked
准备启动应用,先查找MainActivity
21ActivityStackSuperVisor------>attachApplicationLocked--->realStartActivityLocked()

app.thread.scheduleLaunchActivity(new Intent(r.intent), r.appToken,
                    System.identityHashCode(r), r.info, new Configuration(mService.mConfiguration),
                    new Configuration(stack.mOverrideConfig), r.compat, r.launchedFromPackage,
                    task.voiceInteractor, app.repProcState, r.icicle, r.persistentState, results,
                    newIntents, !andResume, mService.isNextTransitionForward(), profilerInfo);

21 ActivityThread----------> scheduleLaunchActivity()
最终通过IPC调用到ActivityThread的scheduleLaunchActivity()来执行Activity的生命周期的函数。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,905评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,140评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,791评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,483评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,476评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,516评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,905评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,560评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,778评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,557评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,635评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,338评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,925评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,898评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,142评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,818评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,347评论 2 342

推荐阅读更多精彩内容