Android 从源码角度理解LayoutInflater的解析过程

在Android开发中,我们通过LayoutInflater去解析布局文件生成对应的View对象。

方法参数:

public View inflate(int resource, ViewGroup root, boolean attachToRoot) {

由于传入的方法参数不同,该方法返回的view也会不同,接下来通过查看源码,来探究其处理逻辑。

为了让代码篇幅短一些,我省掉了一些不影响逻辑的代码,在重要的地方加了注释,其他代码逻辑读者可以查看源码。

 public View inflate(int resource, ViewGroup root, boolean attachToRoot) {
        final Resources res = getContext().getResources();
       ...
        //通过传入的布局资源文件获取xml资源解析对象
        final XmlResourceParser parser = res.getLayout(resource);
        try {
            return inflate(parser, root, attachToRoot);
        } finally {
            parser.close();
        }
    }

inflate内部调用了inflate(parser, root, attachToRoot);该方法实现了解析布局文件。

 public View inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot) {
        synchronized (mConstructorArgs) {
            final AttributeSet attrs = Xml.asAttributeSet(parser);
            ...
            View result = root;

            // Temp is the root view that was found in the xml
           //这里获取的是资源文件根布局的对象
            final View temp = createViewFromTag(root, name, attrs, false);

            ViewGroup.LayoutParams params = null;

            if (root != null) {
                if (DEBUG) {
                    System.out.println("Creating params from root: " +
                            root);
                }
                // Create layout params that match root, if supplied
                //获取根布局的Layoutparams属性
                params = root.generateLayoutParams(attrs);
                if (!attachToRoot) {
                    // Set the layout params for temp if we are not
                    // attaching. (If we are, we use addView, below)
                    //给布局资源根对象设置布局文件最外层layout属性
                    temp.setLayoutParams(params);
                }
            }
                    ...
            // Inflate all children under temp
            rInflate(parser, temp, attrs, true, true);
                    ..
            // We are supposed to attach all the views we found (int temp)
            // to root. Do that now.
            if (root != null && attachToRoot) {
                //将布局文件加入root中
                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;
            }
        }
        
        return result;
    }
               

通过布局文件的属性集attrs,来获取资源布局文件最外层的LayoutParams的属性

 params = root.generateLayoutParams(attrs);

他的内部实现为:

public LayoutParams generateLayoutParams(AttributeSet attrs) {
        return new LayoutParams(getContext(), attrs);
    }

 public LayoutParams(Context c, AttributeSet attrs) {
            TypedArray a = c.obtainStyledAttributes(attrs, R.styleable.ViewGroup_Layout);
            setBaseAttributes(a,
                    R.styleable.ViewGroup_Layout_layout_width,
                    R.styleable.ViewGroup_Layout_layout_height);
            a.recycle();
        }

这里需要说明一点,root的变量定义为ViewGroup,viewGroup的generateLayoutParams内部执行是生成LayoutParams,它内部会去获取layout_width与layout_height。

让我们试着看下LinearLayout的generateLayoutParams()实现方式。

    @Override
    public LayoutParams generateLayoutParams(AttributeSet attrs) {
        return new LinearLayout.LayoutParams(getContext(), attrs);
    }
   public LayoutParams(Context c, AttributeSet attrs) {
        super(c, attrs);
         TypedArray a = c.obtainStyledAttributes(attrs, com.android.internal.R.styleable.LinearLayout_Layout);
         weight = a.getFloat(com.android.internal.R.styleable.LinearLayout_Layout_layout_weight, 0);
         gravity = a.getInt(com.android.internal.R.styleable.LinearLayout_Layout_layout_gravity, -1);
         a.recycle();
        }

可以发现在LinearLayout中不仅获取了layot_width和layout_height,还获取了weight和gravity。

通过源码的实现逻辑,可以总结如下:

  1. root不为空时,attchToRoot为true时,执行
final View temp = createViewFromTag(root, name, attrs, false);
params = root.generateLayoutParams(attrs);
root.addView(temp, params);

这时解析的布局文件view对象会成为root的子View;

2.root不为空,attchToRoot为false,执行

 final View temp = createViewFromTag(root, name, attrs, false);
 params = root.generateLayoutParams(attrs);
 temp.setLayoutParams(params);
 result = temp;
 return result;

这里面将布局文件最外层的layout布局参数,设置给了布局文件View的LayoutParams字段。

3.root为空时,执行

 final View temp = createViewFromTag(root, name, attrs, false);
 result = temp;
 return result;

这种解析出来的View对象是LayoutParams属性字段为空,在调用addView()方法时,Android系统会默认生成一个宽高均为wrap_content属性的LayoutParams。

总结:之所以这样写,是建立在一个很重要的原因上,那就是layout_width这个表示的是View 在布局中的宽度 。对与LayoutInfalter来说,去解析一个布局文件,如果你不将该view加入ViewGroup中去的,就没必要获取这个view“在布局中的属性了”,

在使用View temp = createViewFromTag(root, name, attrs, false);去获取View时,得到的View对象是没有 布局属性的,所以才有了LayoutInfalter该方法。

view的属性字段中有 protected ViewGroup.LayoutParams mLayoutParams;
temp.setLayoutParams(params);该方法给布局根View设置了“在布局中的属性”

另外generateLayoutParams(attrs);不同ViewGroup的该方法实现过程不同,但是她们都没有获取根布局的 layout_margin属性,这也就解释了我们ListView的item布局文件中最外层节点设置了layout_margin属性失效的原因了。

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

推荐阅读更多精彩内容