View 繪制體系知識梳理(1) - LayoutInflater#inflate 源碼解析

前幾天在通過LayoutInflater渲染出子布局欠痴,并添加進(jìn)入父容器的時候,出現(xiàn)了子布局的寬高屬性不生效的情況,為此肌幽,總結(jié)一下和LayoutInflater相關(guān)的知識。

一抓半、獲得LayoutInflater

Android當(dāng)中喂急,如果想要獲得LayoutInflater實例,一共有以下3種方法:

1.1 LayoutInflater inflater = getLayoutInflater();

這種在Activity里面使用笛求,它其實是調(diào)用了

    /**
     * Convenience for calling
     * {@link android.view.Window#getLayoutInflater}.
     */
    @NonNull
    public LayoutInflater getLayoutInflater() {
        return getWindow().getLayoutInflater();
    }

下面我們再來看一下Window的實現(xiàn)類PhoneWindow.java

    public PhoneWindow(Context context) {
        super(context);
        mLayoutInflater = LayoutInflater.from(context);
    }

它其實就是在構(gòu)造函數(shù)中調(diào)用了下面1.2的方法廊移。
而如果是調(diào)用了Fragment中也有和其同名的方法,但是是隱藏的探入,它的理由是:

    /**
     * @hide Hack so that DialogFragment can make its Dialog before creating
     * its views, and the view construction can use the dialog's context for
     * inflation.  Maybe this should become a public API. Note sure.
     */
    public LayoutInflater getLayoutInflater(Bundle savedInstanceState) {
        final LayoutInflater result = mHost.onGetLayoutInflater();
        if (mHost.onUseFragmentManagerInflaterFactory()) {
            getChildFragmentManager(); // Init if needed; use raw implementation below.
            result.setPrivateFactory(mChildFragmentManager.getLayoutInflaterFactory());
        }
        return result;
    }

1.2 LayoutInflater inflater = LayoutInflater.from(this);

    public static LayoutInflater from(Context context) {
        LayoutInflater LayoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        if (LayoutInflater == null) {
            throw new AssertionError("LayoutInflater not found.");
        }
        return LayoutInflater;
    }

可以看到狡孔,它其實是調(diào)用了1.3,但是加上了判空處理蜂嗽,也就是說我們從1.1當(dāng)中的Activity1.2方法中獲取的LayoutInflater不可能為空苗膝。

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

這三種實現(xiàn),默認(rèn)最終都是調(diào)用了最后一種方式植旧。

二辱揭、LayoutInflater#inflate

inflater一共有四個重載方法,最終都是調(diào)用了最后一種實現(xiàn)病附。

2.1 (@LayoutRes int resource, @Nullable ViewGroup root)

    /**
     * Inflate a new view hierarchy from the specified xml resource. Throws
     * {@link InflateException} if there is an error.
     * 
     * @param resource ID for an XML layout resource to load (e.g.,
     *        <code>R.layout.main_page</code>)
     * @param root Optional view to be the parent of the generated hierarchy.
     * @return The root View of the inflated hierarchy. If root was supplied,
     *         this is the root View; otherwise it is the root of the inflated
     *         XML file.
     */
    public View inflate(@LayoutRes int resource, @Nullable ViewGroup root) {
        return inflate(resource, root, root != null);
    }

該方法问窃,接收兩個參數(shù),一個是需要加載的xml文件的id完沪,一個是該xml需要添加的布局域庇,根據(jù)root的情況,返回值分為兩種:

  • 如果root == null,那么返回這個root
  • 如果root != null较剃,那么返回傳入xml的根View

2.2 (XmlPullParser parser, @Nullable ViewGroup root, boolean attachToRoot)

    /**
     * Inflate a new view hierarchy from the specified xml node. Throws
     * {@link InflateException} if there is an error. *
     * <p>
     * <em><strong>Important</strong></em>   For performance
     * reasons, view inflation relies heavily on pre-processing of XML files
     * that is done at build time. Therefore, it is not currently possible to
     * use LayoutInflater with an XmlPullParser over a plain XML file at runtime.
     * 
     * @param parser XML dom node containing the description of the view
     *        hierarchy.
     * @param root Optional view to be the parent of the generated hierarchy.
     * @return The root View of the inflated hierarchy. If root was supplied,
     *         this is the root View; otherwise it is the root of the inflated
     *         XML file.
     */
    public View inflate(XmlPullParser parser, @Nullable ViewGroup root) {
        return inflate(parser, root, root != null);
    }

它的返回值情況和2.1類似咕别,不過它提供的是不是xmlid,而是XmlPullParser写穴,但是由于View的渲染依賴于xml在編譯時的預(yù)處理惰拱,因此,這個方法并不合適啊送。

2.3 public View inflate(@LayoutRes int resource, @Nullable ViewGroup root, boolean attachToRoot)

    /**
     * Inflate a new view hierarchy from the specified xml resource. Throws
     * {@link InflateException} if there is an error.
     * 
     * @param resource ID for an XML layout resource to load (e.g.,
     *        <code>R.layout.main_page</code>)
     * @param root Optional view to be the parent of the generated hierarchy (if
     *        <em>attachToRoot</em> is true), or else simply an object that
     *        provides a set of LayoutParams values for root of the returned
     *        hierarchy (if <em>attachToRoot</em> is false.)
     * @param attachToRoot Whether the inflated hierarchy should be attached to
     *        the root parameter? If false, root is only used to create the
     *        correct subclass of LayoutParams for the root view in the XML.
     * @return The root View of the inflated hierarchy. If root was supplied and
     *         attachToRoot is true, this is root; otherwise it is the root of
     *         the inflated XML file.
     */
    public View inflate(@LayoutRes int resource, @Nullable ViewGroup root, boolean attachToRoot) {
        final Resources res = getContext().getResources();
        if (DEBUG) {
            Log.d(TAG, "INFLATING from resource: \"" + res.getResourceName(resource) + "\" ("
                    + Integer.toHexString(resource) + ")");
        }

        final XmlResourceParser parser = res.getLayout(resource);
        try {
            return inflate(parser, root, attachToRoot);
        } finally {
            parser.close();
        }
    }

如果我們需要渲染的xmlid類型的偿短,那么會先把它解析為XmlResourceParser,然后調(diào)用2.4的方法馋没。

2.4 public View inflate(XmlPullParser parser, @Nullable ViewGroup root, boolean attachToRoot)

    /**
     * Inflate a new view hierarchy from the specified XML node. Throws
     * {@link InflateException} if there is an error.
     * <p>
     * <em><strong>Important</strong></em>   For performance
     * reasons, view inflation relies heavily on pre-processing of XML files
     * that is done at build time. Therefore, it is not currently possible to
     * use LayoutInflater with an XmlPullParser over a plain XML file at runtime.
     * 
     * @param parser XML dom node containing the description of the view
     *        hierarchy.
     * @param root Optional view to be the parent of the generated hierarchy (if
     *        <em>attachToRoot</em> is true), or else simply an object that
     *        provides a set of LayoutParams values for root of the returned
     *        hierarchy (if <em>attachToRoot</em> is false.)
     * @param attachToRoot Whether the inflated hierarchy should be attached to
     *        the root parameter? If false, root is only used to create the
     *        correct subclass of LayoutParams for the root view in the XML.
     * @return The root View of the inflated hierarchy. If root was supplied and
     *         attachToRoot is true, this is root; otherwise it is the root of
     *         the inflated XML file.
     */
    public View inflate(XmlPullParser parser, @Nullable ViewGroup root, boolean attachToRoot) {
        synchronized (mConstructorArgs) {
            final Context inflaterContext = mContext;
            final AttributeSet attrs = Xml.asAttributeSet(parser);
            Context lastContext = (Context) mConstructorArgs[0];
            mConstructorArgs[0] = inflaterContext;
            View result = root;
            try {.
                int type;
                while ((type = parser.next()) != XmlPullParser.START_TAG &&
                        type != XmlPullParser.END_DOCUMENT) {
                    // Empty
                }
                //1.如果根節(jié)點的元素不是START_TAG昔逗,那么拋出異常。
                if (type != XmlPullParser.START_TAG) {
                    throw new InflateException(parser.getPositionDescription()
                            + ": No start tag found!");
                }
                final String name = parser.getName();
                //2.如果根節(jié)點的標(biāo)簽是<merge>篷朵,那么必須要提供一個root勾怒,并且該root要被作為xml的父容器。
                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");
                    }
                    //2.1遞歸地調(diào)用它所有的孩子.
                    rInflate(parser, root, inflaterContext, attrs, false);
                } else {
                    //temp表示傳入的xml的根View
                    final View temp = createViewFromTag(root, name, inflaterContext, attrs);
                    ViewGroup.LayoutParams params = null;
                    //如果提供了root并且不需要把xml的布局加入到其中声旺,那么僅僅需要給它設(shè)置參數(shù)就好笔链。
                    //如果提供了root并且需要加入,那么不會設(shè)置參數(shù)腮猖,而是調(diào)用addView方法鉴扫。
                    if (root != null) {
                        //如果提供了root,那么產(chǎn)生參數(shù)澈缺。
                        params = root.generateLayoutParams(attrs);
                        if (!attachToRoot) {
                            temp.setLayoutParams(params);
                        }
                    }
                    //遞歸地遍歷孩子.
                    rInflateChildren(parser, temp, attrs, true);
                    if (root != null && attachToRoot) {
                        //addView時需要加上前面產(chǎn)生的參數(shù)坪创。
                        root.addView(temp, params);
                    }
                    //如果沒有提供root,或者即使提供root但是不用將root作為parent姐赡,那么返回的是渲染的xml莱预,在`root != null && attachToRoot`時,才會返回root项滑。
                    if (root == null || !attachToRoot) {
                        result = temp;
                    }
                }

            } catch (XmlPullParserException e) {
                InflateException ex = new InflateException(e.getMessage());
                ex.initCause(e);
                throw ex;
            } catch (Exception e) {
                InflateException ex = new InflateException(
                        parser.getPositionDescription()
                                + ": " + e.getMessage());
                ex.initCause(e);
                throw ex;
            } finally {
                // Don't retain static reference on context.
                mConstructorArgs[0] = lastContext;
                mConstructorArgs[1] = null;
            }
            return result;
        }
    }

我們簡單總結(jié)一下英文注釋當(dāng)中的說明依沮,具體的流程可以看上面的中文注釋。

  • 作用:從特定的xml節(jié)點渲染出一個新的view層級杖们。
  • 提示:為了性能考慮,不應(yīng)當(dāng)在運行時使用XmlPullParser來渲染布局肩狂。
  • 參數(shù)parser:包含有描述xml布局層級的parser xml dom摘完。
  • 參數(shù)root,可以是渲染的xmlparentattachToRoot == true)傻谁,或者僅僅是為了給渲染的xml層級提供LayoutParams孝治。
  • 參數(shù)attachToRoot:渲染的View層級是否被添加到root中,如果不是,那么僅僅為xml的根布局生成正確的LayoutParams谈飒。
  • 返回值:如果attachToRoot為真岂座,那么返回root,否則返回渲染的xml的根布局杭措。

三费什、不指定root的情況

由前面的分析可知,當(dāng)我們沒有傳入root的時候手素,LayoutInflater不會調(diào)用temp.setLayoutParams(params)鸳址,也就是像之前我遇到問題時的使用方式一樣:

LinearLayout linearLayout = (LinearLayout) mLayoutInflater.inflate(R.layout.linear_layout, null);
mContentGroup.addView(linearLayout);

當(dāng)沒有調(diào)用上面的方法時,linearLayout內(nèi)部的mLayoutParams參數(shù)是沒有被賦值的泉懦,下面我們再來看一下稿黍,通過這個返回的temp參數(shù),把它通過不帶參數(shù)的addView方法添加進(jìn)去崩哩,會發(fā)生什么巡球。
調(diào)用addView后,如果沒有指定index邓嘹,那么會把index設(shè)為-1酣栈,按前面的分析,那么下面這段邏輯中的getLayoutParams()必然是返回空的吴超。

    public void addView(View child, int index) {
        if (child == null) {
            throw new IllegalArgumentException("Cannot add a null child view to a ViewGroup");
        }
        LayoutParams params = child.getLayoutParams();
        if (params == null) {
            params = generateDefaultLayoutParams();
            if (params == null) {
                throw new IllegalArgumentException("generateDefaultLayoutParams() cannot return null");
            }
        }
        addView(child, index, params);
    }

在此情況下钉嘹,為它提供了默認(rèn)的參數(shù),那么鲸阻,這個默認(rèn)的參數(shù)是什么呢跋涣?

protected LayoutParams generateDefaultLayoutParams() {
    return new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
}

也就是說,當(dāng)我們通過上面的方法得到一個View樹之后鸟悴,將它添加到某個布局中陈辱,這個View數(shù)所指定的根布局中的寬高屬性其實是不生效的,而是變?yōu)榱?code>LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT细诸。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末沛贪,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子震贵,更是在濱河造成了極大的恐慌利赋,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件猩系,死亡現(xiàn)場離奇詭異媚送,居然都是意外死亡,警方通過查閱死者的電腦和手機寇甸,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評論 3 385
  • 文/潘曉璐 我一進(jìn)店門塘偎,熙熙樓的掌柜王于貴愁眉苦臉地迎上來疗涉,“玉大人,你說我怎么就攤上這事吟秩≡劭郏” “怎么了?”我有些...
    開封第一講書人閱讀 158,369評論 0 348
  • 文/不壞的土叔 我叫張陵涵防,是天一觀的道長闹伪。 經(jīng)常有香客問我,道長武学,這世上最難降的妖魔是什么祭往? 我笑而不...
    開封第一講書人閱讀 56,799評論 1 285
  • 正文 為了忘掉前任,我火速辦了婚禮火窒,結(jié)果婚禮上硼补,老公的妹妹穿的比我還像新娘。我一直安慰自己熏矿,他們只是感情好已骇,可當(dāng)我...
    茶點故事閱讀 65,910評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著票编,像睡著了一般褪储。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上慧域,一...
    開封第一講書人閱讀 50,096評論 1 291
  • 那天鲤竹,我揣著相機與錄音,去河邊找鬼昔榴。 笑死辛藻,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的互订。 我是一名探鬼主播吱肌,決...
    沈念sama閱讀 39,159評論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼仰禽!你這毒婦竟也來了氮墨?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,917評論 0 268
  • 序言:老撾萬榮一對情侶失蹤吐葵,失蹤者是張志新(化名)和其女友劉穎规揪,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體温峭,經(jīng)...
    沈念sama閱讀 44,360評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡猛铅,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,673評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了诚镰。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片奕坟。...
    茶點故事閱讀 38,814評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖清笨,靈堂內(nèi)的尸體忽然破棺而出月杉,到底是詐尸還是另有隱情,我是刑警寧澤抠艾,帶...
    沈念sama閱讀 34,509評論 4 334
  • 正文 年R本政府宣布苛萎,位于F島的核電站,受9級特大地震影響检号,放射性物質(zhì)發(fā)生泄漏腌歉。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,156評論 3 317
  • 文/蒙蒙 一齐苛、第九天 我趴在偏房一處隱蔽的房頂上張望翘盖。 院中可真熱鬧,春花似錦凹蜂、人聲如沸馍驯。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽汰瘫。三九已至,卻和暖如春擂煞,著一層夾襖步出監(jiān)牢的瞬間混弥,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評論 1 267
  • 我被黑心中介騙來泰國打工对省, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留蝗拿,地道東北人。 一個月前我還...
    沈念sama閱讀 46,641評論 2 362
  • 正文 我出身青樓官辽,卻偏偏與公主長得像蛹磺,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子同仆,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,728評論 2 351

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