LayoutInflate部分原始碼解析

BaiHongHua發表於2018-04-03

LayoutInflate部分原始碼解析

LatoutInflate 主要的作用是例項化一個 xml 檔案,使得開發者獲取一個 View 的例項(也可以看著把一個 xml 檔案渲染成一個檢視)。在 LayoutInflate 的內部,LayoutInflate 拿到自身的例項,一般通過 android.app.Activity#getLayoutInflater() 方法,或者通過 Context#getSystemService 來拿到已經在應用中的 LayoutInflate 例項(系統早已經配置好了 LayoutInflate 例項)。

[原始碼 1]
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); // 1
        } finally {
            parser.close();
        }
    }
複製程式碼

在 [原始碼 1] 中,inflate(@LayoutRes int resource, @Nullable ViewGroup root, boolean attachToRoot) 方法裡面三個引數分別表示:

  • resource 參數列示需要渲染的 xml 佈局資源
  • root 如果 attachToRoot 設定為 true,則生成結構層次的父級; 如果設定為 false,則返回結構層次提供的一組 LayoutParams 值的物件(這個值可能為空); [ViewGroup 是一個包含其他檢視的特殊的 View,可以看作一個檢視容器]
  • attachToRoot 渲染的檢視的結構層次是否捆綁父檢視的引數,如果設定為 false,則表示需要捆綁;

在 [原始碼 1] 中的解析 1處,會呼叫方法 inflate(parser, root, attachToRoot),下面是檢視其原始碼:

[原始碼 2]
public View inflate(XmlPullParser parser, @Nullable ViewGroup root, boolean attachToRoot) {
        synchronized (mConstructorArgs) {
            
            ...
            final AttributeSet attrs = Xml.asAttributeSet(parser); //返回 xml 資源佈局的屬性集合
            ...
            View result = root;

            try {
                // 查詢檢視的跟檢視節點
                int type;
                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();

                if (DEBUG) {
                    System.out.println("**************************");
                    System.out.println("Creating root view: "
                            + name);
                    System.out.println("**************************");
                }

                if (TAG_MERGE.equals(name)) {
                    if (root == null || !attachToRoot) { //根檢視為空 || attachToRoot 為 false
                        throw new InflateException("<merge /> can be used only with a valid "
                                + "ViewGroup root and attachToRoot=true");
                    }
                    rInflate(parser, root, inflaterContext, attrs, false);
                } else {
                    // 把當前 Xml 佈局例項化,並且拿到該 View 的例項
                    final View temp = createViewFromTag(root, name, inflaterContext, attrs);

                    ViewGroup.LayoutParams params = null;

                    if (root != null) {  //當根節點不為空的時候,建立根檢視的節點的引數
                        // Create layout params that match root, if supplied
                        params = root.generateLayoutParams(attrs);  // 2
                        if (!attachToRoot) { //為 false 的時候根檢視繫結引數
                            // Set the layout params for temp if we are not
                            // attaching. (If we are, we use addView, below)
                            temp.setLayoutParams(params); // 3
                        }
                    }
                    ...
                    //再次渲染根檢視下面的子檢視
                    rInflateChildren(parser, temp, attrs, true);  
                    ...
                    // We are supposed to attach all the views we found (int temp)
                    // to root. Do that now.
                    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) {
                
            } catch (Exception e) {
                
            } finally {
                
            }

            return result;
        }
    }
複製程式碼

上面 [原始碼 2] 主要的邏輯是把從 inflate(XmlPullParser parser, @Nullable ViewGroup root, boolean attachToRoot) {synchronized (mConstructorArgs) 的方法中傳進的 root 引數(該引數為需要渲染的 xml 佈局),經過 createViewFromTag(root, name, inflaterContext, attrs) 的方法拿到該 root 檢視的例項,因為 root 不為空,所以在註釋 2、3 處,為該檢視佈局繫結佈局引數,帶檢視引數返回檢視的例項; 如果 root 引數在 inflate 方法傳進來的時候為空,側直接返回該 xml 檢視的例項,但沒有繫結佈局引數;

相關文章