LayoutInflater源碼分析

獲取方式

LayoutInflater inflater = (LayoutInflater)context.getSystemService
      (Context.LAYOUT_INFLATER_SERVICE);

或者

LayoutInflater layoutInflater = LayoutInflater.from(context);

LayoutInflater方法

參數(shù)說(shuō)明
resource:布局文件id狂魔。
root:根視圖不為空時(shí),如果attachToRoot為true,則將inflate視圖添加到根視圖上,為false榆综,則將根視圖的布局參數(shù)(LayoutParams)設(shè)置給inflate視圖。
attachToRoot:是否添加到根視圖上铸史。

public View inflate(XmlPullParser parser, ViewGroup root) {
    return inflate(parser, root, root != null);
}
public View inflate(int resource, ViewGroup root, boolean attachToRoot) {
    final Resources res = getContext().getResources();
    final XmlResourceParser parser = res.getLayout(resource);
    try {
        return inflate(parser, root, attachToRoot);
    } finally {
        parser.close();
    }
}
public View inflate(XmlPullParser parser, ViewGroup root) {
    return inflate(parser, root, root != null);
}
public View inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot) {
    // mConstructorArgs為長(zhǎng)度2的Object數(shù)組鼻疮,mConstructorArgs[0]當(dāng)前Context對(duì)象,mConstructorArgs[1]為當(dāng)前布局的AttributeSet琳轿。
    synchronized (mConstructorArgs) {
        // Trace事件
        Trace.traceBegin(Trace.TRACE_TAG_VIEW, "inflate");
        final Context inflaterContext = mContext;
        final AttributeSet attrs = Xml.asAttributeSet(parser);
        Context lastContext = (Context) mConstructorArgs[0];
        mConstructorArgs[0] = inflaterContext;
        View result = root;
        try {
            // Pull解析文章判沟,http://www.reibang.com/p/189b91ef5d61
            int type;
            // 跳過(guò)START_DOCUMENT類型,直接處理START_TAG
            while ((type = parser.next()) != XmlPullParser.START_TAG &&
                type != XmlPullParser.END_DOCUMENT) {
                // Empty
            }
            if (type != XmlPullParser.START_TAG) {
                throw new InflateException(parser.getPositionDescription()
                     + ": No start tag found!");
            }
            final String name = parser.getName();
            // 判斷merge標(biāo)簽崭篡,如果存在根視圖不能為空挪哄,attachToRoot不能為false
            if (TAG_MERGE.equals(name)) {
                if (root == null || !attachToRoot) {
                    throw new InflateException("<merge /> can be used only with a valid "
                            + "ViewGroup root and attachToRoot=true");
                }
                // 參考下面rInflate源碼,此時(shí)parser為merge標(biāo)簽內(nèi)容
                rInflate(parser, root, inflaterContext, attrs, false);
            } else {
                // Temp is the root view that was found in the xml
                // 創(chuàng)建inflate視圖
                final View temp = createViewFromTag(root, name, inflaterContext, attrs);
                ViewGroup.LayoutParams params = null;
                // 獲取根視圖布局參數(shù)
                if (root != null) {
                    // Create layout params that match root, if supplied
                    params = root.generateLayoutParams(attrs);
                    // 如果attachToRoot為false琉闪,把根視圖布局參數(shù)賦給inflate視圖
                    if (!attachToRoot) {
                        // Set the layout params for temp if we are not
                        // attaching. (If we are, we use addView, below)
                        temp.setLayoutParams(params);
                    }
                }
                // Inflate all children under temp against its context.
                rInflateChildren(parser, temp, attrs, true);
                // We are supposed to attach all the views we found (int temp)
                // to root. Do that now.
                // 如果attachToRoot為true并且根視圖不為空迹炼,添加inflate視圖到根視圖上,root和result是同一對(duì)象
                if (root != null && attachToRoot) {
                    root.addView(temp, params);
                }
                // Decide whether to return the root that was passed in or the
                // top view found in xml.
                if (root == null || !attachToRoot) {
                    result = temp;
                }
            }
        } catch (XmlPullParserException e) {
            final InflateException ie = new InflateException(e.getMessage(), e);
            ie.setStackTrace(EMPTY_STACK_TRACE);
            throw ie;
        } catch (Exception e) {
            final InflateException ie = new InflateException(parser.getPositionDescription()
                    + ": " + e.getMessage(), e);
            ie.setStackTrace(EMPTY_STACK_TRACE);
            throw ie;
        } finally {
            // Don't retain static reference on context.
            mConstructorArgs[0] = lastContext;
            mConstructorArgs[1] = null;
            Trace.traceEnd(Trace.TRACE_TAG_VIEW);
        }
        return result;
    }
}

rInflate方法

void rInflate(XmlPullParser parser, View parent, Context context,
            AttributeSet attrs, boolean finishInflate) throws XmlPullParserException, IOException {
    final int depth = parser.getDepth();
    int type;
    while (((type = parser.next()) != XmlPullParser.END_TAG ||
            parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
        if (type != XmlPullParser.START_TAG) {
            continue;
        }
        final String name = parser.getName();
        if (TAG_REQUEST_FOCUS.equals(name)) {
            // 處理requestFocus標(biāo)簽
            parseRequestFocus(parser, parent);
        } else if (TAG_TAG.equals(name)) {
            // 處理tag標(biāo)簽
            parseViewTag(parser, parent, attrs);
        } else if (TAG_INCLUDE.equals(name)) {
            // 處理include標(biāo)簽
            if (parser.getDepth() == 0) {
                throw new InflateException("<include /> cannot be the root element");
            }
            parseInclude(parser, context, parent, attrs);
        } else if (TAG_MERGE.equals(name)) {
            // merge標(biāo)簽不能嵌套merge標(biāo)簽
            throw new InflateException("<merge /> must be the root element");
        } else {
            // 處理merge標(biāo)簽
            // 創(chuàng)建視圖
            final View view = createViewFromTag(parent, name, context, attrs);
            // 獲取根視圖
            final ViewGroup viewGroup = (ViewGroup) parent;
            // 獲取根視圖布局參數(shù)
            final ViewGroup.LayoutParams params = viewGroup.generateLayoutParams(attrs);
            // Inflate子視圖
            rInflateChildren(parser, view, attrs, true);
            // 添加子視圖
            viewGroup.addView(view, params);
        }
    }
    if (finishInflate) {
        parent.onFinishInflate();
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末塘偎,一起剝皮案震驚了整個(gè)濱河市疗涉,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌吟秩,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,718評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件绽淘,死亡現(xiàn)場(chǎng)離奇詭異涵防,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門壮池,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)偏瓤,“玉大人,你說(shuō)我怎么就攤上這事椰憋√耍” “怎么了?”我有些...
    開封第一講書人閱讀 158,207評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵橙依,是天一觀的道長(zhǎng)证舟。 經(jīng)常有香客問(wèn)我,道長(zhǎng)窗骑,這世上最難降的妖魔是什么女责? 我笑而不...
    開封第一講書人閱讀 56,755評(píng)論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮创译,結(jié)果婚禮上抵知,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好证九,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,862評(píng)論 6 386
  • 文/花漫 我一把揭開白布侄榴。 她就那樣靜靜地躺著,像睡著了一般掖疮。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上仰禽,一...
    開封第一講書人閱讀 50,050評(píng)論 1 291
  • 那天氮墨,我揣著相機(jī)與錄音,去河邊找鬼吐葵。 笑死规揪,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的温峭。 我是一名探鬼主播猛铅,決...
    沈念sama閱讀 39,136評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼凤藏!你這毒婦竟也來(lái)了奸忽?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,882評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤揖庄,失蹤者是張志新(化名)和其女友劉穎栗菜,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蹄梢,經(jīng)...
    沈念sama閱讀 44,330評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡疙筹,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,651評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片而咆。...
    茶點(diǎn)故事閱讀 38,789評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡霍比,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出暴备,到底是詐尸還是另有隱情悠瞬,我是刑警寧澤,帶...
    沈念sama閱讀 34,477評(píng)論 4 333
  • 正文 年R本政府宣布涯捻,位于F島的核電站浅妆,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏汰瘫。R本人自食惡果不足惜狂打,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,135評(píng)論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望混弥。 院中可真熱鬧趴乡,春花似錦、人聲如沸蝗拿。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)哀托。三九已至惦辛,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間仓手,已是汗流浹背胖齐。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評(píng)論 1 267
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留嗽冒,地道東北人呀伙。 一個(gè)月前我還...
    沈念sama閱讀 46,598評(píng)論 2 362
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像添坊,于是被迫代替她去往敵國(guó)和親剿另。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,697評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容

  • 1.layout布局轉(zhuǎn)換view方法 2個(gè)重載方法贬蛙,最終都是到最后一個(gè)方法 2.真正的解析方法 Android里面...
    楚靈彥閱讀 148評(píng)論 0 0
  • 請(qǐng)簡(jiǎn)述下面三種實(shí)例化View的區(qū)別雨女,創(chuàng)建RecyclerView 的item下列那種方式最好?還是都可以? (1)...
    Ayres閱讀 76評(píng)論 0 1
  • 轉(zhuǎn)載請(qǐng)注明出處 http://www.reibang.com/p/3bf0d75d5ada (作者:韓棟)由于本...
    miraclehen閱讀 451評(píng)論 0 1
  • 三阳准、重點(diǎn)班 因?yàn)橹厣笠廊皇亲约悍斩椋皇谴┰降叫≌f(shuō)里的某些王朝或者歷史不存在的架空王朝,眼前熟悉的初三生活野蝇,和生活...
    湖邊寫詩(shī)閱讀 269評(píng)論 0 0
  • 【0522今日話題】迄今為止岔擂,你收獲最大的一次自我投資是什么位喂? 迄今為止浪耘,我收獲最大的一次自我投資是參加了藝博家庭...
    輕風(fēng)閱讀閱讀 192評(píng)論 4 3