Android 源码解析 之 setContentView

转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/41894125,本文出自:【张鸿洋的博客

大家在平时的开发中,对于setContentView肯定不陌生,那么对其内部的实现会不会比较好奇呢~~~有幸终于能看到一些PhoneWindow神马的源码,今天就带大家来跑一回源码~~

1、Activity  setContentView

首先不用说,进入Activity的setContentView

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. public void setContentView(int layoutResID) {  
  2.        getWindow().setContentView(layoutResID);  
  3.        initActionBar();  
  4.    }  

可以看到里面获取了Window,然后调用了Window的setContentView

2、PhoneWindow  setContentView

这里的Window的实现类是PhoneWindow(package com.android.internal.policy.impl;),我们直接看它的实现:

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. @Override  
  2.    public void setContentView(int layoutResID) {  
  3.        if (mContentParent == null) {  
  4.            installDecor();  
  5.        } else {  
  6.            mContentParent.removeAllViews();  
  7.        }  
  8.        mLayoutInflater.inflate(layoutResID, mContentParent);  
  9.        final Callback cb = getCallback();  
  10.        if (cb != null && !isDestroyed()) {  
  11.            cb.onContentChanged();  
  12.        }  
  13.    }  

可以看到,首先判断mContentParent是否为null,是则调用installDecor(),否则移除其内部所有的子Views,然后通过LayoutInflater.inflate将我们传入的layout放置到mContentParent中。

从这里就能看出来mContentParent是个ViewGroup且包裹我们整个布局文件;而installDecor()估计就是去初始化我们这个mContentParent,一会我们会去验证。

接下来,通过getCallBack拿到了一个CallBack对象,其实这个获取到的这个CallBack就是我们Activity自己,你可以去看我们的Activity是实现了CallBack接口的。

这个Callback明显就是一个回调,当PhoneWindow接收到系统分发给它的触摸、IO、菜单等相关的事件时,可以回调相应的Activity进行处理。至于Callback可以回调哪些方法,自己看下这个接口的声明方法即可。当然了这里不是我们的关键,因为我们的setContentView里面只是回调了onContentChanged,而onContentChanged在Activity中是空实现。

好了,接下来去看我们的installDecor()

3、PhoneWindow  installDecor

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. private void installDecor() {  
  2.             if (mDecor == null) {  
  3.                 mDecor = generateDecor();  
  4.                 mDecor.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);  
  5.                 mDecor.setIsRootNamespace(true);  
  6.                 //...  
  7.                 }  
  8.             }  
  9.             if (mContentParent == null) {  
  10.                 mContentParent = generateLayout(mDecor);  
  11.                 mTitleView = (TextView)findViewById(com.android.internal.R.id.title);  
  12.                 if (mTitleView != null) {  
  13.                    //根据FEATURE_NO_TITLE隐藏,或者设置mTitleView的值  
  14.                     //...  
  15.                 } else {  
  16.                     mActionBar = (ActionBarView) findViewById(com.android.internal.R.id.action_bar);  
  17.                     if (mActionBar != null) {  
  18.                         //设置ActionBar标题、图标神马的;根据FEATURE初始化Actionbar的一些显示  
  19.                         //...  
  20.                     }  
  21.                 }  
  22.             }  
  23.     }  

这里代码比较长,删除了一些初始化Actionbar样式神马的代码。

可以看到这里不仅初始化mContentParent,而且在之前先调用generateDecor();初始化了一个mDecor,mDecor是DecorView对象,为FrameLayout的子类。

在得到mDecor以后设置其焦点的获取方式为,当其子孙都不需要时,自己才获取。

然后通过 generateLayout(mDecor);把mDecor做为参数传入,然后获取到了我们的mContentParent;

接下里就开始通过findViewById进行获取控件了,而这里的findViewById的代码是这样的:

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. public View findViewById(int id) {  
  2.        return getDecorView().findViewById(id);  
  3.    }  

getDecorView返回的就是我们的mDecor。

这里我们猜测下,首先去初始化mDecor,然后通过mDecor初始化了mContentParent,接下来mDecor就可以使用findViewById方法了。那么我觉得,在初始化mDecor的方法

generateDecor()中,一定为我们的mDecor放入了布局或者控件(最简单的就是使用inflate压入了布局文件),而mContentParent可能就是mDecor中的某个子View。

是不是这样呢?

我们一起来先看看generateDecor()方法的实现:

4、PhoneWindow  generateDecor

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. protected DecorView generateDecor() {  
  2.         return new DecorView(getContext(), -1);  
  3.     }  
[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. public DecorView(Context context, int featureId) {  
  2.           super(context);  
  3.           mFeatureId = featureId;  
  4.       }  

很遗憾,我们的generateDecor()只是初始化了一个FrameLayout对象,并没有在其内部压入布局文件,看来我们的猜测有些问题;不过没事,既然此方法没有,那么generateLayout(mDecor);中一定设置了layout文件,并且这名字也很像这么回事。

5、PhoneWindow  generateLayout

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. protected ViewGroup generateLayout(DecorView decor) {  
  2.                     // Apply data from current theme.  
  3.                     TypedArray a = getWindowStyle();  
  4.                     //...Window_windowIsFloating,Window_windowNoTitle,Window_windowActionBar...  
  5.                     //首先通过WindowStyle中设置的各种属性,对Window进行requestFeature或者setFlags  
  6.               
  7.                     if (a.getBoolean(com.android.internal.R.styleable.Window_windowNoTitle, false)) {  
  8.                         requestFeature(FEATURE_NO_TITLE);  
  9.                     }  
  10.                     //...  
  11.                     if (a.getBoolean(com.android.internal.R.styleable.Window_windowFullscreen, false)) {  
  12.                         setFlags(FLAG_FULLSCREEN, FLAG_FULLSCREEN & (~getForcedWindowFlags()));  
  13.                     }  
  14.                     //...根据当前sdk的版本确定是否需要menukey  
  15.                     WindowManager.LayoutParams params = getAttributes();  
  16.                     //通过a中设置的属性,设置  params.softInputMode 软键盘的模式;  
  17.                     //如果当前是浮动Activity,在params中设置FLAG_DIM_BEHIND并记录dimAmount的值。  
  18.                     //以及在params.windowAnimations记录WindowAnimationStyle  
  19.                       
  20.                     // Inflate the window decor.  
  21.                     int layoutResource;  
  22.                     int features = getLocalFeatures();  
  23.                     // System.out.println("Features: 0x" + Integer.toHexString(features));  
  24.                     if ((features & ((1 << FEATURE_LEFT_ICON) | (1 << FEATURE_RIGHT_ICON))) != 0) {  
  25.                         if (mIsFloating) {  
  26.                             TypedValue res = new TypedValue();  
  27.                             getContext().getTheme().resolveAttribute(  
  28.                                     com.android.internal.R.attr.dialogTitleIconsDecorLayout, res, true);  
  29.                             layoutResource = res.resourceId;  
  30.                         } else {  
  31.                             layoutResource = com.android.internal.R.layout.screen_title_icons;  
  32.                         }  
  33.                         // XXX Remove this once action bar supports these features.  
  34.                         removeFeature(FEATURE_ACTION_BAR);  
  35.                         // System.out.println("Title Icons!");  
  36.                     } else if ((features & ((1 << FEATURE_PROGRESS) | (1 << FEATURE_INDETERMINATE_PROGRESS))) != 0  
  37.                             && (features & (1 << FEATURE_ACTION_BAR)) == 0) {  
  38.                         // Special case for a window with only a progress bar (and title).  
  39.                         // XXX Need to have a no-title version of embedded windows.  
  40.                         layoutResource = com.android.internal.R.layout.screen_progress;  
  41.                         // System.out.println("Progress!");  
  42.                     } else if ((features & (1 << FEATURE_CUSTOM_TITLE)) != 0) {  
  43.                         // Special case for a window with a custom title.  
  44.                         // If the window is floating, we need a dialog layout  
  45.                         if (mIsFloating) {  
  46.                             TypedValue res = new TypedValue();  
  47.                             getContext().getTheme().resolveAttribute(  
  48.                                     com.android.internal.R.attr.dialogCustomTitleDecorLayout, res, true);  
  49.                             layoutResource = res.resourceId;  
  50.                         } else {  
  51.                             layoutResource = com.android.internal.R.layout.screen_custom_title;  
  52.                         }  
  53.                         // XXX Remove this once action bar supports these features.  
  54.                         removeFeature(FEATURE_ACTION_BAR);  
  55.                     } else if ((features & (1 << FEATURE_NO_TITLE)) == 0) {  
  56.                         // If no other features and not embedded, only need a title.  
  57.                         // If the window is floating, we need a dialog layout  
  58.                         if (mIsFloating) {  
  59.                             TypedValue res = new TypedValue();  
  60.                             getContext().getTheme().resolveAttribute(  
  61.                                     com.android.internal.R.attr.dialogTitleDecorLayout, res, true);  
  62.                             layoutResource = res.resourceId;  
  63.                         } else if ((features & (1 << FEATURE_ACTION_BAR)) != 0) {  
  64.                             layoutResource = com.android.internal.R.layout.screen_action_bar;  
  65.                         } else {  
  66.                             layoutResource = com.android.internal.R.layout.screen_title;  
  67.                         }  
  68.                         // System.out.println("Title!");  
  69.                     } else if ((features & (1 << FEATURE_ACTION_MODE_OVERLAY)) != 0) {  
  70.                         layoutResource = com.android.internal.R.layout.screen_simple_overlay_action_mode;  
  71.                     } else {  
  72.                         // Embedded, so no decoration is needed.  
  73.                         layoutResource = com.android.internal.R.layout.screen_simple;  
  74.                         // System.out.println("Simple!");  
  75.                     }  
  76.               
  77.               
  78.                     View in = mLayoutInflater.inflate(layoutResource, null);  
  79.                     decor.addView(in, new ViewGroup.LayoutParams(MATCH_PARENT, MATCH_PARENT));  
  80.               
  81.                     ViewGroup contentParent = (ViewGroup)findViewById(ID_ANDROID_CONTENT);  
  82.                     //...  
  83.               
  84.                     return contentParent;  
  85.                 }  
  86.          }  

代码也比较长,首先getWindowStyle在当前的Window的theme中获取我们的Window中定义的属性。具体参考:\frameworks\base\core\res\res\values\attrs.xml

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. <!-- The set of attributes that describe a Windows's theme. -->  
  2.    <declare-styleable name="Window">  
  3.        <attr name="windowBackground" />  
  4.        <attr name="windowContentOverlay" />  
  5.        <attr name="windowFrame" />  
  6.        <attr name="windowNoTitle" />  
  7.        <attr name="windowFullscreen" />  
  8.        <attr name="windowOverscan" />  
  9.        <attr name="windowIsFloating" />  
  10.        <attr name="windowIsTranslucent" />  
  11.        <attr name="windowShowWallpaper" />  
  12.        <attr name="windowAnimationStyle" />  
  13.        <attr name="windowSoftInputMode" />  
  14.        <attr name="windowDisablePreview" />  
  15.        <attr name="windowNoDisplay" />  
  16.        <attr name="textColor" />  
  17.        <attr name="backgroundDimEnabled" />  
  18.        <attr name="backgroundDimAmount" />  
然后就根据这些属性的值,对我们的Window各种requestFeature,setFlags等等。所以这里就是解析我们为Activity设置theme的地方,至于theme一般可以在AndroidManifest里面进行设置。

接下来就到关键的部分了,21-75行:通过对features和mIsFloating的判断,为layoutResource进行赋值,至于值可以为R.layout.screen_custom_title;R.layout.screen_action_bar;等等。至于features,除了theme中设置的,我们也可以在Activity的onCreate的setContentView之前进行requestFeature,也解释了,为什么需要在setContentView前调用requestFeature设置全屏什么的。

得到了layoutResource以后,78行,通过LayoutInflater把布局转化成view,加入到我们的decor,即传入的mDecor中。

接下来81行:通过mDecor.findViewById传入R.id.content(相信这个id大家或多或少都听说过),返回mDecor(布局)中的id为content的View,一般为FrameLayout。

好了,可以看到我们的mDecor是一个FrameLayout,然后会根据theme去选择系统中的布局文件,将布局文件通过inflate转化为view,加入到mDecor中;这些布局文件中都包含一个id为content的FrameLayout,将其引用返回给mContentParent。

等我们的mContentParent有值了以后,还记得干嘛了么?再贴一次PhoneWindow的setContentView

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. @Override  
  2.   public void setContentView(int layoutResID) {  
  3.       if (mContentParent == null) {  
  4.           installDecor();  
  5.       } else {  
  6.           mContentParent.removeAllViews();  
  7.       }  
  8.       mLayoutInflater.inflate(layoutResID, mContentParent);  
  9.       final Callback cb = getCallback();  
  10.       if (cb != null && !isDestroyed()) {  
  11.           cb.onContentChanged();  
  12.       }  
  13.   }  

有了mContentParent,然后把我们写的布局文件通过inflater加入到mContentParent中。


关于R.layout.xxx可以在frameworks\base\core\res\res\layout里面进行查看。

例如:R.layout.screen_custom_title.xml

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. <?xml version="1.0" encoding="utf-8"?>  
  2.   
  3. <!-- 
  4. This is a custom layout for a screen. 
  5. -->  
  6.   
  7. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  8.     android:orientation="vertical"  
  9.     android:fitsSystemWindows="true">  
  10.     <!-- Popout bar for action modes -->  
  11.     <ViewStub android:id="@+id/action_mode_bar_stub"  
  12.               android:inflatedId="@+id/action_mode_bar"  
  13.               android:layout="@layout/action_mode_bar"  
  14.               android:layout_width="match_parent"  
  15.               android:layout_height="wrap_content" />  
  16.   
  17.     <FrameLayout android:id="@android:id/title_container"   
  18.         android:layout_width="match_parent"   
  19.         android:layout_height="?android:attr/windowTitleSize"  
  20.         style="?android:attr/windowTitleBackgroundStyle">  
  21.     </FrameLayout>  
  22.     <FrameLayout android:id="@android:id/content"  
  23.         android:layout_width="match_parent"   
  24.         android:layout_height="0dip"  
  25.         android:layout_weight="1"  
  26.         android:foregroundGravity="fill_horizontal|top"  
  27.         android:foreground="?android:attr/windowContentOverlay" />  
  28. </LinearLayout>  
上面的title_container是用来放自定义Title的容器,而下面的content就是放置我们设置的布局的容器。关于自定义Title例子,大家可以百度下。


到此,我们的setContentView就分析完成了,我们可以回顾一下:

首先初始化mDecor,即DecorView为FrameLayout的子类。就是我们整个窗口的根视图了。

然后,根据theme中的属性值,选择合适的布局,通过infalter.inflater放入到我们的mDecor中。

在这些布局中,一般会包含ActionBar,Title,和一个id为content的FrameLayout。

最后,我们在Activity中设置的布局,会通过infalter.inflater压入到我们的id为content的FrameLayout中去。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值