从源码的角度说说Activity的setContentView的原理

我们在Activity开发的时候天天会用到这个方法,有时候还需要根据需求在setContentView调用的时候做一些动作,因此我们就需要知道它内部是如何工作的,我们来一起看一下:

setContentView有三个重载方法:

    public void setContentView(int layoutResID) {getWindow().setContentView(layoutResID);initWindowDecorActionBar();}public void setContentView(View view) {getWindow().setContentView(view);initWindowDecorActionBar();}public void setContentView(View view, ViewGroup.LayoutParams params) {getWindow().setContentView(view, params);initWindowDecorActionBar();}

他们实际都在调用getWindow方法返回的Window对象的setContentView方法,那getWindow对象返回的是谁呢?

    public Window getWindow() {return mWindow;}

我们可以看到getWindow返回的是一个mWindows的对象,那么它在哪被赋值的呢?通过查找我们可以找到在Activity的attach方法中有这么一段:

mWindow = PolicyManager.makeNewWindow(this);

也就是说继续往下看,发现PolicyManager.makeNewWindow内部确实这样的:

    // The static methods to spawn new policy-specific objectspublic static Window makeNewWindow(Context context) {return sPolicy.makeNewWindow(context);}

好,那我们找找sPolicy又是谁:

我们可以在PolicyManager方法内看到静态代码块以及它的一些属性:

    private static final String POLICY_IMPL_CLASS_NAME ="com.android.internal.policy.impl.Policy";private static final IPolicy sPolicy;static {// Pull in the actual implementation of the policy at run-timetry {Class policyClass = Class.forName(POLICY_IMPL_CLASS_NAME);sPolicy = (IPolicy)policyClass.newInstance();} catch (ClassNotFoundException ex) {throw new RuntimeException(POLICY_IMPL_CLASS_NAME + " could not be loaded", ex);} catch (InstantiationException ex) {throw new RuntimeException(POLICY_IMPL_CLASS_NAME + " could not be instantiated", ex);} catch (IllegalAccessException ex) {throw new RuntimeException(POLICY_IMPL_CLASS_NAME + " could not be instantiated", ex);}}

也就是说,sPolicy对象是类com.android.internal.policy.impl.Policy的一个实例,OK,我们进入这个类看一下它的makeNewWindow方法,噢噢,是这样啊:

    public Window makeNewWindow(Context context) {return new PhoneWindow(context);}

原来那个getWindow返回的是PhoneWindow对象,setContentView调用的则是PhoneWindow的setContentView,OK,说了这么多重点就是看下PhoneWindow的setContentView方法是如何工作的:

PhoneWindow的setContentView的重载方法内部有些不同,我们先看参数为int的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);} else {mLayoutInflater.inflate(layoutResID, mContentParent);}final Callback cb = getCallback();if (cb != null && !isDestroyed()) {cb.onContentChanged();}}

我们只看重点部分,都是通过LayoutInflater的inflate的方法加载的,是不是很熟悉呢?inflate方法的第二个参数是mContentParent,就是说要把这个layoutResID的这个布局添加到mContentParent中,那么mContentParent就是我们的主布局了,从代码中也可以看出来:

    /*** The ID that the main layout in the XML layout file should have.*/public static final int ID_ANDROID_CONTENT = com.android.internal.R.id.content;
    protected ViewGroup generateLayout(DecorView decor) {// Apply data from current theme....ViewGroup contentParent = (ViewGroup)findViewById(ID_ANDROID_CONTENT);if (contentParent == null) {throw new RuntimeException("Window couldn't find content container view");}...return contentParent;}
            mContentParent = generateLayout(mDecor);

好,入口的东西都分析的差不多了,着重看一下LayoutInflater的inflate的工作原理,我们常用的方法是这3个:

    public View inflate(int resource, ViewGroup root) {return inflate(resource, root, root != null);}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();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();}}

其实它们都没做什么,主要做工作的是它:

    public View inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot) {synchronized (mConstructorArgs) {Trace.traceBegin(Trace.TRACE_TAG_VIEW, "inflate");final AttributeSet attrs = Xml.asAttributeSet(parser);Context lastContext = (Context)mConstructorArgs[0];mConstructorArgs[0] = mContext;View result = root;try {// Look for the root node.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) {throw new InflateException("<merge /> can be used only with a valid "+ "ViewGroup root and attachToRoot=true");}rInflate(parser, root, attrs, false, false);} else {// Temp is the root view that was found in the xmlfinal 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 suppliedparams = root.generateLayoutParams(attrs);if (!attachToRoot) {// Set the layout params for temp if we are not// attaching. (If we are, we use addView, below)temp.setLayoutParams(params);}}if (DEBUG) {System.out.println("-----> start inflating children");}// Inflate all children under temprInflate(parser, temp, attrs, true, true);if (DEBUG) {System.out.println("-----> done inflating children");}// 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) {InflateException ex = new InflateException(e.getMessage());ex.initCause(e);throw ex;} catch (IOException 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;}Trace.traceEnd(Trace.TRACE_TAG_VIEW);return result;}}

这段代码比较多,我们挑一下重点看:

                    // Temp is the root view that was found in the xmlfinal View temp = createViewFromTag(root, name, attrs, false);ViewGroup.LayoutParams params = null;if (root != null) {// Create layout params that match root, if suppliedparams = root.generateLayoutParams(attrs);if (!attachToRoot) {// Set the layout params for temp if we are not// attaching. (If we are, we use addView, below)temp.setLayoutParams(params);}}// 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;}

这段代码就是说通过createViewFromTag方法生成临时View对象,然后如果View生成成功,给它产生一个默认的LayoutParams对象附在上面,最后判断root是否为空,决定是否要将这个临时View添加到root之上,好,接下来,我们的重点是createViewFromTag方法:

    /*** Creates a view from a tag name using the supplied attribute set.* <p>* If {@code inheritContext} is true and the parent is non-null, the view* will be inflated in parent view's context. If the view specifies a* <theme> attribute, the inflation context will be wrapped with the* specified theme.* <p>* Note: Default visibility so the BridgeInflater can override it.*/View createViewFromTag(View parent, String name, AttributeSet attrs, boolean inheritContext) {if (name.equals("view")) {name = attrs.getAttributeValue(null, "class");}Context viewContext;if (parent != null && inheritContext) {viewContext = parent.getContext();} else {viewContext = mContext;}// Apply a theme wrapper, if requested.final TypedArray ta = viewContext.obtainStyledAttributes(attrs, ATTRS_THEME);final int themeResId = ta.getResourceId(0, 0);if (themeResId != 0) {viewContext = new ContextThemeWrapper(viewContext, themeResId);}ta.recycle();if (name.equals(TAG_1995)) {// Let's party like it's 1995!return new BlinkLayout(viewContext, attrs);}if (DEBUG) System.out.println("******** Creating view: " + name);try {View view;if (mFactory2 != null) {view = mFactory2.onCreateView(parent, name, viewContext, attrs);} else if (mFactory != null) {view = mFactory.onCreateView(name, viewContext, attrs);} else {view = null;}if (view == null && mPrivateFactory != null) {view = mPrivateFactory.onCreateView(parent, name, viewContext, attrs);}if (view == null) {final Object lastContext = mConstructorArgs[0];mConstructorArgs[0] = viewContext;try {if (-1 == name.indexOf('.')) {view = onCreateView(parent, name, attrs);} else {view = createView(name, null, attrs);}} finally {mConstructorArgs[0] = lastContext;}}if (DEBUG) System.out.println("Created view is: " + view);return view;} catch (InflateException e) {throw e;} catch (ClassNotFoundException e) {InflateException ie = new InflateException(attrs.getPositionDescription()+ ": Error inflating class " + name);ie.initCause(e);throw ie;} catch (Exception e) {InflateException ie = new InflateException(attrs.getPositionDescription()+ ": Error inflating class " + name);ie.initCause(e);throw ie;}}

这么多代码,其实我们的重点是这部分:

            View view;if (mFactory2 != null) {view = mFactory2.onCreateView(parent, name, viewContext, attrs);} else if (mFactory != null) {view = mFactory.onCreateView(name, viewContext, attrs);} else {view = null;}if (view == null && mPrivateFactory != null) {view = mPrivateFactory.onCreateView(parent, name, viewContext, attrs);}if (view == null) {final Object lastContext = mConstructorArgs[0];mConstructorArgs[0] = viewContext;try {if (-1 == name.indexOf('.')) {view = onCreateView(parent, name, attrs);} else {view = createView(name, null, attrs);}} finally {mConstructorArgs[0] = lastContext;}}

我们可以看到,刚开始会交给mFactory2、mFactory、mPrivateFactory这三个View工厂来进行处理,这三个对象都是通过构造方法设置进来的,如下:
    protected LayoutInflater(LayoutInflater original, Context newContext) {mContext = newContext;mFactory = original.mFactory;mFactory2 = original.mFactory2;mPrivateFactory = original.mPrivateFactory;setFilter(original.mFilter);}
这个构造方法在哪里被调用我们先不去看,我们可以继续我们的重点:

                    if (-1 == name.indexOf('.')) {view = onCreateView(parent, name, attrs);} else {view = createView(name, null, attrs);}

这里的意思是,如果这个Tag是没有( . )的话,那就是说这个tag是android提供的默认的控件,像View,TextView,Button等等。否则,就是其它情况了,我们先看默认没有( . )的情况:

    protected View onCreateView(String name, AttributeSet attrs)throws ClassNotFoundException {return createView(name, "android.view.", attrs);}

请注意这个方法的第二个参数android.view.,然后我们进入方法内部:

    public final View createView(String name, String prefix, AttributeSet attrs)throws ClassNotFoundException, InflateException {Constructor<? extends View> constructor = sConstructorMap.get(name);Class<? extends View> clazz = null;try {Trace.traceBegin(Trace.TRACE_TAG_VIEW, name);if (constructor == null) {// Class not found in the cache, see if it's real, and try to add itclazz = mContext.getClassLoader().loadClass(prefix != null ? (prefix + name) : name).asSubclass(View.class);if (mFilter != null && clazz != null) {boolean allowed = mFilter.onLoadClass(clazz);if (!allowed) {failNotAllowed(name, prefix, attrs);}}constructor = clazz.getConstructor(mConstructorSignature);sConstructorMap.put(name, constructor);} else {// If we have a filter, apply it to cached constructorif (mFilter != null) {// Have we seen this name before?Boolean allowedState = mFilterMap.get(name);if (allowedState == null) {// New class -- remember whether it is allowedclazz = mContext.getClassLoader().loadClass(prefix != null ? (prefix + name) : name).asSubclass(View.class);boolean allowed = clazz != null && mFilter.onLoadClass(clazz);mFilterMap.put(name, allowed);if (!allowed) {failNotAllowed(name, prefix, attrs);}} else if (allowedState.equals(Boolean.FALSE)) {failNotAllowed(name, prefix, attrs);}}}Object[] args = mConstructorArgs;args[1] = attrs;constructor.setAccessible(true);final View view = constructor.newInstance(args);if (view instanceof ViewStub) {// Use the same context when inflating ViewStub later.final ViewStub viewStub = (ViewStub) view;viewStub.setLayoutInflater(cloneInContext((Context) args[0]));}return view;} catch (NoSuchMethodException e) {InflateException ie = new InflateException(attrs.getPositionDescription()+ ": Error inflating class "+ (prefix != null ? (prefix + name) : name));ie.initCause(e);throw ie;} catch (ClassCastException e) {// If loaded class is not a View subclassInflateException ie = new InflateException(attrs.getPositionDescription()+ ": Class is not a View "+ (prefix != null ? (prefix + name) : name));ie.initCause(e);throw ie;} catch (ClassNotFoundException e) {// If loadClass fails, we should propagate the exception.throw e;} catch (Exception e) {InflateException ie = new InflateException(attrs.getPositionDescription()+ ": Error inflating class "+ (clazz == null ? "<unknown>" : clazz.getName()));ie.initCause(e);throw ie;} finally {Trace.traceEnd(Trace.TRACE_TAG_VIEW);}}

这段代码其实重点就是通过ClassLoader的loadClass方法将类加载进来,然后通过反射的方式获取它的构造方法进行实例化,然后基本功能就完成了。有的同学可能会注意到这里有个mFilter属性,这个属性是用来定义这个类是否允许被加载的。


好,以上就是最基本的Inflate加载过程,其实实际过程不是这样的,我们将在下一章查看详细的加载过程。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/479552.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

开放开源 | DeepKE:基于深度学习的开源中文关系抽取工具

本文转载自公众号&#xff1a;浙大 KG。作者&#xff1a;余海阳机构&#xff1a;浙江大学代码地址: https://github.com/zjunlp/deepkeOpenKG 发布地址: http://openkg.cn/tool/deepke一、系统简介关系抽取是知识图谱构建的基本子任务之一&#xff0c;它主要面向非结构化的文本…

python定时任务,隔月执行,隔定时执行

#BlockingScheduler定时任务 from apscheduler.schedulers.blocking import BlockingScheduler from datetime import datetime 首先看看周一到周五定时执行任务 # 输出时间 def job():print(datetime.now().strtime("%Y-%m-%d %H:%M:%S")) # BlockingScheduler sche…

微前端在美团外卖的实践

背景 微前端是一种利用微件拆分来达到工程拆分治理的方案&#xff0c;可以解决工程膨胀、开发维护困难等问题。随着前端业务场景越来越复杂&#xff0c;微前端这个概念最近被提起得越来越多&#xff0c;业界也有很多团队开始探索实践并在业务中进行了落地。可以看到&#xff0c…

论文浅尝 | Meta Relational Learning: 基于元关系学习的少样本知识图谱推理

本文转载自公众号&#xff1a;浙大KG。 笔记整理&#xff1a;陈名杨&#xff0c;浙江大学在读博士发表会议&#xff1a;EMNLP-2019论文链接&#xff1a;https://arxiv.org/abs/1909.01515开源代码&…

测试集没标签,可以拿来测模型吗?

文&#xff1a;维建编&#xff1a;白鹡鸰背景正常情况下&#xff0c;我们可以用一个带标签的数据集来测试分类器的表现&#xff08;称之为测试集&#xff09;。然而&#xff0c;现实中&#xff0c;因为种种因素的制约&#xff08;标注成本高、标注难度大等 Google&#xff1a;穷…

从0到1 | 手把手教你如何使用哈工大NLP工具——PyLTP!

原文链接&#xff1a;https://flashgene.com/archives/46041.html 本站内容均来自兴趣收集,如不慎侵害的您的相关权益,请留言告知,我们将尽快删除.谢谢. 作者 | 杨秀璋 来源 | CSDN 博客&#xff08;CSDN id&#xff1a;Eastmount&#xff09; 【导语】此文是作者基于 Python 构…

从源码的角度说说Activity的setContentView的原理(二)

前文http://blog.csdn.net/sahadev_/article/details/49072045虽然讲解了LayoutInflate的整个过程&#xff0c;但是其中很多地方是不准确不充分的&#xff0c;这一节就详细讲一下我们上一节遗留的细节问题&#xff0c;我们遗留的问题有这些&#xff1a; 1.在PhoneWindow的setC…

美团智能配送系统的运筹优化实战

深入各个产业已经成为互联网目前的主攻方向&#xff0c;线上和线下存在大量复杂的业务约束和多种多样的决策变量&#xff0c;为运筹优化技术提供了用武之地。作为美团智能配送系统最核心的技术之一&#xff0c;运筹优化是如何在美团各种业务场景中进行落地的呢&#xff1f;本文…

Android如何给无法更改继承关系的Activity更换ActionBar(setContentView方法实战)

前言&#xff1a; 通常我们有时候会直接使用ADT工具直接新建一个Activity页&#xff0c;而这个Activity我们又无法更改它的父类&#xff0c;那遇到这种情况该如何处理呢&#xff1f;其实很简单&#xff0c;好&#xff0c;看如何来解决这个问题&#xff1a; 先来看看这个问题出…

论文浅尝 | 基于属性embeddings的跨图谱实体对齐

论文笔记整理&#xff1a;谭亦鸣&#xff0c;东南大学博士生&#xff0c;研究方向为知识库问答。来源&#xff1a;AAAI 2019链接&#xff1a;https://aaai.org/ojs/index.php/AAAI/article/view/3798跨图谱实体对齐任务的目标是从两个不同知识图谱中找出同一 real-world 实体&a…

LeetCode 771. 宝石与石头(哈希)

文章目录1. 题目信息2. 解题1. 题目信息 给定字符串J 代表石头中宝石的类型&#xff0c;和字符串 S代表你拥有的石头。 S 中每个字符代表了一种你拥有的石头的类型&#xff0c;你想知道你拥有的石头中有多少是宝石。 J 中的字母不重复&#xff0c;J 和 S中的所有字符都是字母…

开启NLP新时代的BERT模型,真的好上手吗?

都说BERT模型开启了NLP的新时代&#xff0c;更有“BERT在手&#xff0c;天下我有”的传说&#xff0c;它解决了很多NLP的难题&#xff1a;1、BERT让低成本地训练超大规模语料成为可能&#xff1b;2、BERT能够联合神经网络所有层中的上下文来进行训练&#xff0c;实现更精准的文…

YOLO系列:YOLOv1,YOLOv2,YOLOv3,YOLOv4,YOLOv5简介

原文链接&#xff1a; https://zhuanlan.zhihu.com/p/136382095 YOLO系列&#xff1a;YOLOv1,YOLOv2,YOLOv3,YOLOv4,YOLOv5简介YOLO系列是基于深度学习的回归方法。RCNN&#xff0c; Fast-RCNN&#xff0c;Faster-RCNN是基于深度学习的分类方法。YOLO官网&#xff1a;https://g…

一站式机器学习平台建设实践

本文根据美团配送资深技术专家郑艳伟在2019 SACC&#xff08;中国系统架构师大会&#xff09;上的演讲内容整理而成&#xff0c;主要介绍了美团配送技术团队在建设一站式机器学习平台过程中的经验总结和探索&#xff0c;希望对从事此领域的同学有所帮助。 0. 写在前面 AI是目前…

(Android开发辅助工具)动态广播注册解注工具

平常我们开发的时候需要使用到动态注册广播&#xff0c;如果在一个类内注册很多的广播代码就会既冗余又乱糟糟的&#xff0c;就像这样&#xff1a; msgReceiver new NewMessageBroadcastReceiver();IntentFilter intentFilter new IntentFilter(EMChatManager.getInstance().…

LeetCode 535. TinyURL 的加密与解密(哈希)

文章目录1. 题目信息2. 哈希解题1. 题目信息 TinyURL是一种URL简化服务&#xff0c; 比如&#xff1a;当你输入一个URL https://leetcode.com/problems/design-tinyurl 时&#xff0c;它将返回一个简化的URL http://tinyurl.com/4e9iAk. 要求&#xff1a;设计一个 TinyURL 的…

论文浅尝 | Doc2EDAG:一种针对中文金融事件抽取的端到端文档级框架

论文笔记整理&#xff1a;叶宏彬&#xff0c;浙江大学博士生&#xff0c;研究方向为知识图谱、自然语言处理。链接&#xff1a;https://arxiv.org/pdf/1904.07535.pdf背景大多数现有的事件提取&#xff08;EE&#xff09;方法仅提取句子范围内的事件参数。但是&#xff0c;此类…

NeurIPS'20 | 通过文本压缩,让BERT支持长文本

作者 | wangThr来源 | 知乎这是今年清华大学及阿里巴巴发表在NIPS 2020上的一篇论文《CogLTX: Applying BERT to Long Texts》&#xff0c;介绍了如何优雅地使用bert处理长文本。作者同时开源了不同NLP任务下使用COGLTX的代码&#xff1a;论文题目&#xff1a;CogLTX: Applying…

福利!Android官方网站出现中文版本!

这两天在Android开发者网站上查东西的时候发现有中文的搜索结果&#xff0c;点开结果全是中文的&#xff0c;以后可以畅通无阻的看文档了&#xff0c;快来围观。

自然场景人脸检测技术实践

一、 背景 人脸检测技术是通过人工智能分析的方法自动返回图片中的人脸坐标位置和尺寸大小&#xff0c;是人脸智能分析应用的核心组成部分&#xff0c;具有广泛的学术研究价值和业务应用价值&#xff0c;比如人脸识别、人脸属性分析&#xff08;年龄估计、性别识别、颜值打分和…