Android View解析系列之setContentView和findViewById

概述

话不多说,先上图

未命名文件.png

再看一段熟悉的代码:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.xiao.view.MainActivity">
    <TextView
        android:id="@+id/textview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
</LinearLayout>
   public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        TextView textView= (TextView) findViewById(R.id.textview);
        textView.setText("hello world");
    }
}

问题来了:
1.setContentView(@LayoutRes int layoutResID)是如何将布局加载到上图中ContentView上的。
2.findViewById(@IdRes int id)是如何通过id返回View的。

setContentView

跟一下Activity.setContentView
    public void setContentView(@LayoutRes int layoutResID) {
        getWindow().setContentView(layoutResID);//getWindow-->phoneWindow
        initWindowDecorActionBar();//初始化ActionBar
    }
继续跟PhoneWindow.setContentView
public void setContentView(int layoutResID) {
        // Note: FEATURE_CONTENT_TRANSITIONS may be set in the process of installing the window
        // decor, when theme attributes and the like are crystalized. Do not check the feature
        // before this happens.
        if (mContentParent == null) {
            installDecor();
        } else if (!hasFeature(FEATURE_CONTENT_TRANSITIONS)) {
            mContentParent.removeAllViews();
        }
/************************重点关注***************************/
        if (hasFeature(FEATURE_CONTENT_TRANSITIONS)) {
            final Scene newScene = Scene.getSceneForLayout(mContentParent, layoutResID,
                    getContext());
            transitionTo(newScene);//最终进入mLayoutInflater.inflate(layoutResID, mContentParent);
        } else {
            mLayoutInflater.inflate(layoutResID, mContentParent);
        }
/************************重点关注***************************/
        mContentParent.requestApplyInsets();
        final Callback cb = getCallback();
        if (cb != null && !isDestroyed()) {
            cb.onContentChanged();
        }
        mContentParentExplicitlySet = true;
    }

直接看重点关注的部分,最终都是走到 mLayoutInflater.inflate(layoutResID, mContentParent),一路跟进去,最终进入到LayoutInflater.rInflate(XmlPullParser parser, View parent, Context context, AttributeSet attrs, boolean finishInflate)

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)) {
                parseRequestFocus(parser, parent);
            } else if (TAG_TAG.equals(name)) {
                parseViewTag(parser, parent, attrs);
            } else if (TAG_INCLUDE.equals(name)) {
                if (parser.getDepth() == 0) {
                    throw new InflateException("<include /> cannot be the root element");
                }
                parseInclude(parser, context, parent, attrs);
            } else if (TAG_MERGE.equals(name)) {
                throw new InflateException("<merge /> must be the root element");
            } else {
                final View view = createViewFromTag(parent, name, context, attrs);
                final ViewGroup viewGroup = (ViewGroup) parent;
                final ViewGroup.LayoutParams params = viewGroup.generateLayoutParams(attrs);
/************************重点关注***************************/
                rInflateChildren(parser, view, attrs, true);
                viewGroup.addView(view, params);
/************************重点关注***************************/
            }
        }

        if (finishInflate) {
            parent.onFinishInflate();
        }
    }

直接看重点关注部分,先跟到rInflateChildren(parser, view, attrs, true)里面

final void rInflateChildren(XmlPullParser parser, View parent, AttributeSet attrs,
            boolean finishInflate) throws XmlPullParserException, IOException {
        rInflate(parser, parent, parent.getContext(), attrs, finishInflate);//重点关注
    }

看重点关注这句,这里很明显通过递归解析xml,接着往下走,viewGroup.addView(view, params)这一句最终调用的是addView(View child, int index, LayoutParams params)

public void addView(View child, int index, LayoutParams params) {
        if (DBG) {
            System.out.println(this + " addView");
        }

        if (child == null) {
            throw new IllegalArgumentException("Cannot add a null child view to a ViewGroup");
        }

        // addViewInner() will call child.requestLayout() when setting the new LayoutParams
        // therefore, we call requestLayout() on ourselves before, so that the child's request
        // will be blocked at our level
        requestLayout();
        invalidate(true);
        addViewInner(child, index, params, false);
    }

requestLayout(); invalidate(true);这两句会刷新屏幕,将解析好的xml显示到屏幕上面,
到这里第一个问题就解析完了。

findViewById

addViewInner(child, index, params, false)最终会调用ViewGroup.addInArray(child, index)

private void addInArray(View child, int index) {
        View[] children = mChildren;//mChildren:当前ViewGroup子view的数组
        final int count = mChildrenCount;
        final int size = children.length;
        if (index == count) {//待添加View的索引等于mChildren大小
            if (size == count) {//数组满了
                mChildren = new View[size + ARRAY_CAPACITY_INCREMENT];//数组扩容,容量增加12
                System.arraycopy(children, 0, mChildren, 0, size);//旧数组的元素copy到新数组
                children = mChildren;//children指向新数组
            }
            children[mChildrenCount++] = child;//添加子View
        } else if (index < count) {//待添加View的索引小于mChildren大小
            if (size == count) {//数组满了
                mChildren = new View[size + ARRAY_CAPACITY_INCREMENT];//数组扩容,容量增加12
                System.arraycopy(children, 0, mChildren, 0, index);//旧数组的元素copy到新数组
                System.arraycopy(children, index, mChildren, index + 1, count - index);//旧数组的元素copy到新数组
                children = mChildren;//children指向新数组
            } else {
                System.arraycopy(children, index, children, index + 1, count - index);//旧数组的元素copy到新数组
            }
            children[index] = child;//添加子View
            mChildrenCount++;
            if (mLastTouchDownIndex >= index) {
                mLastTouchDownIndex++;
            }
        } else {//待添加View的索引大于mChildren大小
            throw new IndexOutOfBoundsException("index=" + index + " count=" + count);
        }
    }

addInArray(View child, int index)的核心作用是将每个groupView的子view存储到一个数组里面,findViewById将通过id在这个数组中找到对应的view,并返回。直接通过源码去验证

@Nullable
    public View findViewById(@IdRes int id) {
        return getWindow().findViewById(id);
    }

跟一下getWindow

public Window getWindow() {
        return mWindow;
    }

跟一下PhoneWindow.findViewById

public View findViewById(@IdRes int id) {
        return getDecorView().findViewById(id);
    }

跟一下PhoneWindow.getDecorView

public final View getDecorView() {
        if (mDecor == null || mForceDecorInstall) {
            installDecor();
        }
        return mDecor;
    }

private DecorView mDecor;

DecorView是FrameLayout的子类,而FrameLayout是ViewGoup的子类,直接跟ViewGroup的findViewById方法

public final View findViewById(@IdRes int id) {
        if (id < 0) {
            return null;
        }
        return findViewTraversal(id);
    }

继续跟进ViewGroup.findViewTraversal

protected View findViewTraversal(@IdRes int id) {
        if (id == mID) {
            return this;
        }

        final View[] where = mChildren;//mChildren保存了当前ViewGroup的所有子View
        final int len = mChildrenCount;

        for (int i = 0; i < len; i++) {
            View v = where[i];

            if ((v.mPrivateFlags & PFLAG_IS_ROOT_NAMESPACE) == 0) {
                v = v.findViewById(id);

                if (v != null) {
                    return v;
                }
            }
        }

        return null;
    }

注意:这里的mChildren保存了当前ViewGroup的所有子View,就是通过前面我们已经分析的ViewGroup.addInArray方法保存的。也就是说在LayoutInflater.inflate的时候,会调用ViewGroup.addInArray将当前ViewGroup的子View保存到数组中。这里通过一个for循环,取得每个子View,在调用子View.findViewById,继续跟进,最终调用View.findViewTraversal

protected View findViewTraversal(@IdRes int id) {
        if (id == mID) {
            return this;
        }
        return null;
    }

通过当前View对象的id和要找的id对比,如果是,返回当前view,不是,返回null。
OK,第二个问题也就解析完了。

画一张流程图如下所示

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

推荐阅读更多精彩内容