Android繪制流程窗口啟動流程分析(上)

原文鏈接:https://www.cnblogs.com/tiger-wang-ms/p/6517048.html

源碼分析篇 - Android繪制流程(一)窗口啟動流程分析

Activity鸵闪、View痴奏、Window之間的關系可以用以下的簡要UML關系圖表示,在這里貼出來,比較能夠幫組后面流程分析部分的閱讀。


一、Activity的啟動流程

在startActivity()后,經(jīng)過一些邏輯流程會通知到ActivityManagerService(后面以AMS簡稱),AMS接收到啟動acitivty的請求后博敬,會通過跨進程通信調(diào)用AcitivtyThread.handleLauncherActivity()方法,我們從這里開始分析珊搀,首先來看handleLauncherActivity()方法冶忱。

`private?void?handleLaunchActivity(ActivityClientRecord r, Intent customIntent, String reason) {

...// Initialize before creating the activity

WindowManagerGlobal.initialize();

Activitya = performLaunchActivity(r, customIntent);

if (a != null) {         r.createdConfig = new Configuration(mConfiguration);         reportSizeConfigurations(r);         Bundle oldState = r.state;

//該方法會調(diào)用到Activity的onResume()方法         handleResumeActivity(r.token, false, r.isForward,               !r.activity.mFinished && !r.startsNotResumed, r.lastProcessedSeq, reason);

...

}

...

}`

這里重點關注三個方法(加粗的地方),首先來看WindowManagerGlobal.initialize()境析,WindowManagerGlobal是單例模式的囚枪,一個進程內(nèi)只有一個,這里調(diào)用該類的初始化方法劳淆,后續(xù)我們再對該類的作用和相關方法進行分析链沼;第三個是在創(chuàng)建好Activity后調(diào)用Acitivty的onResume()方法。這里我們來看需關注的第二個方法performLaunchActivity()沛鸵,代碼如下括勺。

private Activity performLaunchActivity(ActivityClientRecord r, Intent customIntent) {    ? ...//通過反射方式創(chuàng)建Activity? ? ? ? Activity activity =null;try{? ? ? ? ? ? java.lang.ClassLoader cl = r.packageInfo.getClassLoader();? ? ? ? ? ? activity = mInstrumentation.newActivity(? ? ? ? ? ? ? ? ? ? cl, component.getClassName(), r.intent);? ? ? ? ? ? StrictMode.incrementExpectedActivityCount(activity.getClass());? ? ? ? ? ? r.intent.setExtrasClassLoader(cl);? ? ? ? ? ? r.intent.prepareToEnterProcess();if(r.state !=null) {? ? ? ? ? ? ? ? r.state.setClassLoader(cl);? ? ? ? ? ? }? ? ? ? }catch(Exception e) {if(!mInstrumentation.onException(activity, e)) {thrownewRuntimeException("Unable to instantiate activity "+ component? ? ? ? ? ? ? ? ? ? +": "+ e.toString(), e);? ? ? ? ? ? }? ? ? ? }try{? ? ? ? ? ? ...if(activity !=null) {? ? ? ? ? ? ? ? Context appContext = createBaseContextForActivity(r, activity);? ? ? ? ? ? ? ? CharSequence title = r.activityInfo.loadLabel(appContext.getPackageManager());? ? ? ? ? ? ? ? Configuration config =newConfiguration(mCompatConfiguration);if(r.overrideConfig !=null) {? ? ? ? ? ? ? ? ? ? config.updateFrom(r.overrideConfig);? ? ? ? ? ? ? ? }if(DEBUG_CONFIGURATION) Slog.v(TAG,"Launching activity "+ r.activityInfo.name +" with config "+ config);? ? ? ? ? ? ? ? Windowwindow=null;if(r.mPendingRemoveWindow !=null&& r.mPreserveWindow) {window= r.mPendingRemoveWindow;? ? ? ? ? ? ? ? ? ? r.mPendingRemoveWindow =null;? ? ? ? ? ? ? ? ? ? r.mPendingRemoveWindowManager =null;? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? activity.attach(appContext,this, getInstrumentation(), r.token,? ? ? ? ? ? ? ? ? ? ? ? r.ident, app, r.intent, r.activityInfo, title, r.parent,? ? ? ? ? ? ? ? ? ? ? ? r.embeddedID, r.lastNonConfigurationInstances, config,? ? ? ? ? ? ? ? ? ? ? ? r.referrer, r.voiceInteractor,window);          ? ...//調(diào)用acitivity的onCreate()方法if(r.isPersistable()) {? ? ? ? ? ? ? ? ? ?                mInstrumentation.callActivityOnCreate(activity, r.state, r.persistentState);? ? ? ? ? ? ? ?            }else{? ? ? ? ? ? ? ? ? ?                mInstrumentation.callActivityOnCreate(activity, r.state);? ? ? ? ? ? ? ?            }          ...       }returnactivity;? ? }

這個方法主要是讀取Acitivity這里利用反射創(chuàng)建出ActivityClientRecord所要求的Activity對象,然后調(diào)用了acitivity.attach()方法曲掰。注意attach()傳入的參數(shù)有很多疾捍,在performLacunchActivity()方法流程中,調(diào)用attach()方前栏妖,我們省略掉的步驟基本都在為這些參數(shù)做準備乱豆,attach()方法的作用其實就是將這些參數(shù)配置到新創(chuàng)建的Activity對象中;而在attach之后則會回調(diào)到acitivity的onCreate()方法吊趾。我們進入Activity.java類詳細來看下attach方法宛裕。

此外,在attach之前會初始化一個Window對象论泛,Window.java是一個抽象類揩尸,代表了一個矩形不可見的容器,主要負責加載顯示界面屁奏,每個Activity都會對應了一個Window對象岩榆。如果ActivityClientRecord.mPendingRevomeWindow變量中已經(jīng)保存了一個Window對象,則會在后面的attach方法中被使用,具體使用的場景會在后面中介紹朗恳。

`final void attach(Context context, ActivityThread aThread,

Instrumentation instr, IBinder token, int ident,

Application application, Intent intent, ActivityInfo info,

CharSequence title, Activity parent, String id,

NonConfigurationInstances lastNonConfigurationInstances,

Configuration config, String referrer, IVoiceInteractor voiceInteractor,

Window window) {

attachBaseContext(context);

mFragments.attachHost(null/*parent*/);? ? mWindow =newPhoneWindow(this,window);//(1)mWindow.setWindowControllerCallback(this);? ? mWindow.setCallback(this);? ? mWindow.setOnWindowDismissedCallback(this);? ? mWindow.getLayoutInflater().setPrivateFactory(this);if(info.softInputMode != WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED) {? ? ? ? mWindow.setSoftInputMode(info.softInputMode);? ? }if(info.uiOptions !=0) {? ? ? ? mWindow.setUiOptions(info.uiOptions);? ? }     ...//初始化Acitity相關屬性mWindow.setWindowManager(? ? ? ? ? ? (WindowManager)context.getSystemService(Context.WINDOW_SERVICE),? ? ? ? ? ? mToken, mComponent.flattenToString(),? ? ? ? ? ? (info.flags & ActivityInfo.FLAG_HARDWARE_ACCELERATED) !=0);//(2)if(mParent !=null) {? ? ? ? mWindow.setContainer(mParent.getWindow());? ? }? ? mWindowManager = mWindow.getWindowManager();? ? mCurrentConfig = config;}`

 重點關注初始化window對象的操作湿颅,首先創(chuàng)建了PhoneWindow對象為activity的mWindow變量载绿,在創(chuàng)建時傳入了上一個activity對應的window對象粥诫,之后又將這個acitivity設置為window對象的回調(diào)。Activity中很多操作view相關的方法崭庸,例如setContentView()怀浆、findViewById()、getLayoutInflater()等怕享,實際上都是直接調(diào)用到PhoneWindow里面的相關方法执赡。創(chuàng)建完acitivty對應的PhoneWindow之后便會調(diào)用setWindowManager()方法。首先來看PhonewWindow構(gòu)造方法函筋。

publicPhoneWindow(Context context, Window preservedWindow){this(context);// Only main activity windows use decor context, all the other windows depend on whatever// context that was given to them.mUseDecorContext =true;if(preservedWindow !=null) {//快速重啟activity機制mDecor = (DecorView) preservedWindow.getDecorView();? ? ? ? ? ? mElevation = preservedWindow.getElevation();? ? ? ? ? ? mLoadElevation =false;? ? ? ? ? ? mForceDecorInstall =true;// If we're preserving window, carry over the app token from the preserved// window, as we'll be skipping the addView in handleResumeActivity(), and// the token will not be updated as for a new window.getAttributes().token = preservedWindow.getAttributes().token;? ? ? ? }// Even though the device doesn't support picture-in-picture mode,// an user can force using it through developer options.booleanforceResizable = Settings.Global.getInt(context.getContentResolver(),? ? ? ? ? ? ? ? DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES,0) !=0;? ? ? ? mSupportsPictureInPicture = forceResizable || context.getPackageManager().hasSystemFeature(? ? ? ? ? ? ? ? PackageManager.FEATURE_PICTURE_IN_PICTURE);? ? }

點擊下方鏈接免費獲取Android進階資料:

https://shimo.im/docs/tXXKHgdjPYj6WT8d/

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末沙合,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子跌帐,更是在濱河造成了極大的恐慌首懈,老刑警劉巖,帶你破解...
    沈念sama閱讀 219,539評論 6 508
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件谨敛,死亡現(xiàn)場離奇詭異究履,居然都是意外死亡,警方通過查閱死者的電腦和手機脸狸,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,594評論 3 396
  • 文/潘曉璐 我一進店門最仑,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人炊甲,你說我怎么就攤上這事泥彤。” “怎么了卿啡?”我有些...
    開封第一講書人閱讀 165,871評論 0 356
  • 文/不壞的土叔 我叫張陵吟吝,是天一觀的道長。 經(jīng)常有香客問我牵囤,道長爸黄,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,963評論 1 295
  • 正文 為了忘掉前任揭鳞,我火速辦了婚禮炕贵,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘野崇。我一直安慰自己称开,他們只是感情好,可當我...
    茶點故事閱讀 67,984評論 6 393
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著鳖轰,像睡著了一般清酥。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上蕴侣,一...
    開封第一講書人閱讀 51,763評論 1 307
  • 那天焰轻,我揣著相機與錄音,去河邊找鬼昆雀。 笑死辱志,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的狞膘。 我是一名探鬼主播揩懒,決...
    沈念sama閱讀 40,468評論 3 420
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼挽封!你這毒婦竟也來了已球?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 39,357評論 0 276
  • 序言:老撾萬榮一對情侶失蹤辅愿,失蹤者是張志新(化名)和其女友劉穎智亮,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體渠缕,經(jīng)...
    沈念sama閱讀 45,850評論 1 317
  • 正文 獨居荒郊野嶺守林人離奇死亡鸽素,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 38,002評論 3 338
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了亦鳞。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片馍忽。...
    茶點故事閱讀 40,144評論 1 351
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖燕差,靈堂內(nèi)的尸體忽然破棺而出遭笋,到底是詐尸還是另有隱情,我是刑警寧澤徒探,帶...
    沈念sama閱讀 35,823評論 5 346
  • 正文 年R本政府宣布瓦呼,位于F島的核電站,受9級特大地震影響测暗,放射性物質(zhì)發(fā)生泄漏央串。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 41,483評論 3 331
  • 文/蒙蒙 一碗啄、第九天 我趴在偏房一處隱蔽的房頂上張望质和。 院中可真熱鬧,春花似錦稚字、人聲如沸饲宿。這莊子的主人今日做“春日...
    開封第一講書人閱讀 32,026評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽瘫想。三九已至仗阅,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間国夜,已是汗流浹背减噪。 一陣腳步聲響...
    開封第一講書人閱讀 33,150評論 1 272
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留支竹,地道東北人旋廷。 一個月前我還...
    沈念sama閱讀 48,415評論 3 373
  • 正文 我出身青樓鸠按,卻偏偏與公主長得像礼搁,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子目尖,可洞房花燭夜當晚...
    茶點故事閱讀 45,092評論 2 355