Activity 系列博客
- 《 Activity 的组成》
- 《Android Activity——启动过程探索(一)》
- 《Android Activity——启动过程探索(二)》
- 《Android Activity——启动过程探索(三)》
- 《Activity 启动模式及任务栈探究》
- 《 Activity常见问题》
Activity 的组成
Activity
代表一个窗口,实际上这个窗口并不是 Activity
,而是由 一个 继承至Window
抽象类的 PhoneWindow
对象mWindow
来表示的,mWindow
是Activity
的成员变量,主要作用就是负责窗口的管理。之所以说是管理窗口的,是因为它并不能将界面展示出来,展现界面是由它管理的 DecorView
对象来完成, 在Activity
中我们可以通过getWindow().getDecorView()
方法来获取DecorView
对象,DecorView
类是 FrameLayout
的子类, 也是整个 View
树的根布局(这里也能说明Android事件的分发是从ViewGroup
开始的,如果需要了解更多关于Android事件分发问题,可以浏览《 Android中的事件分发机制》这篇博客)。DecorView
由三部分构成: ActionBar、标题区(标题区根据加载布局的不同,可能会没有)和内容区。
对上图进行说明:
- 首先是最外层的
Activity
,一般我们是继承自AppCompatActivity
,但是AppCompatActivity
最终也是继承自Activity
的,所以我们的最外框层,就是Activity
-
Activity
相当于一个框,它包含了Window
(实际上是Window
的子类PhoneWindow
)来管理窗口,Activity
其他功能这里不做说明 -
PhoneWindo
w管理窗口,它包含了DecorView
用来渲染和显示内容(包括ActionBar、TitleBar和ContentParent部分) -
DecorView
是FrameLayout
的子类,也是整个视图的根节点,开发者写的布局layout.xml文件最终是被添加到DecorView
的ContentParent部分 - 当在讨论Android事件的分发是从
View
还是ViewGroup
开始时,从DecorView extends FrameLayout extends ViewGroup
就能得到Android事件是从ViewGroup
开始的(如果需要了解更多关于Android事件分发问题,可以浏览《 Android中的事件分发机制》这篇博客)
源码解析
注意:源码版本为 Android 10(Api 29),不同Android版本可能有一些差别
setContentView()
执行过程
// Activity 中的 setContentView() 方法
public void setContentView(@LayoutRes int layoutResID) {
getWindow().setContentView(layoutResID);
initWindowDecorActionBar();
}
getWindow()
方法返回的是 Window
类型的成员变量 mWindow
,实际是 PhoneWindow
对象。(mWindow
的创建过程请继续往下看,在后面【Activity中PhoneWindow在什么时候创建的】中会说到),我们现在继续看 PhoneWindow
中的 setContentView()
方法:
@Override
public void setContentView(int layoutResID) {
if (mContentParent == null) {
installDecor(); // 内容根布局为null时,调用 installDecor() 方法创建 DecorView
} else if (!hasFeature(FEATURE_CONTENT_TRANSITIONS)) {
mContentParent.removeAllViews();
}
if (hasFeature(FEATURE_CONTENT_TRANSITIONS)) {
final Scene newScene = Scene.getSceneForLayout(mContentParent, layoutResID,
getContext());
transitionTo(newScene);
} else {
// 将传递的 布局文件id 通过 inflate 添加到 mContentParent 中
mLayoutInflater.inflate(layoutResID, mContentParent);
}
mContentParent.requestApplyInsets();
final Callback cb = getCallback();
if (cb != null && !isDestroyed()) {
cb.onContentChanged();
}
mContentParentExplicitlySet = true;
}
通过以上我们知道了,Activity
中调用 setContentView()
方法实际上就是调用了 PhoneWindow
中的 setContentView()
方法,然后创建 DecorView
以及将布局内容增加到 DecorView
中过程。
DecorView
的创建和 布局内容填充的过程
在上面方法中,在初次的时候,mContentParent
肯定为 null
,所以会走 installDecor()
方法创建 DecorView
private void installDecor() {
mForceDecorInstall = false;
if (mDecor == null) {
mDecor = generateDecor(-1); // 关键点1:创建 DecorView
} else {
mDecor.setWindow(this);
}
if (mContentParent == null) {
mContentParent = generateLayout(mDecor); // 关键点2:初始化内容区域 mContentParent
mDecor.makeOptionalFitsSystemWindows();
// 下面的代码是设置标题(如果需要并且存在TitleView)和Activity样式、效果等,忽略
}
}
-
关键点1
generateDecor()
方法创建DecorView
protected DecorView generateDecor(int featureId) { Context context; if (mUseDecorContext) { Context applicationContext = getContext().getApplicationContext(); if (applicationContext == null) { context = getContext(); } else { context = new DecorContext(applicationContext, getContext()); if (mTheme != -1) { context.setTheme(mTheme); } } } else { context = getContext(); } return new DecorView(context, featureId, this, getAttributes()); }
通过 new DecorView()
直接创建 DecorView
对象,看看 DecorView
的定义,继承至 FrameLayout
:
public class DecorView extends FrameLayout implements RootViewSurfaceTaker, WindowCallbacks
-
关键点2
generateLayout()
方法初始化内容区域protected ViewGroup generateLayout(DecorView decor) { // 获取和设置Activity各种属性、样式、效果等,忽略 // Inflate the window decor. int layoutResource; // 根据Activity不同的特征加载不同的布局(这个布局是系统中的,也是DecorView唯一的子孩子控件) int features = getLocalFeatures(); if ((features & (1 << FEATURE_SWIPE_TO_DISMISS)) != 0) { layoutResource = R.layout.screen_swipe_dismiss; setCloseOnSwipeEnabled(true); } else if ((features & ((1 << FEATURE_LEFT_ICON) | (1 << FEATURE_RIGHT_ICON))) != 0) { if (mIsFloating) { TypedValue res = new TypedValue(); getContext().getTheme().resolveAttribute( R.attr.dialogTitleIconsDecorLayout, res, true); layoutResource = res.resourceId; } else { layoutResource = R.layout.screen_title_icons; } removeFeature(FEATURE_ACTION_BAR); } else if ((features & ((1 << FEATURE_PROGRESS) | (1 << FEATURE_INDETERMINATE_PROGRESS))) != 0 && (features & (1 << FEATURE_ACTION_BAR)) == 0) { layoutResource = R.layout.screen_progress; } else if ((features & (1 << FEATURE_CUSTOM_TITLE)) != 0) { if (mIsFloating) { TypedValue res = new TypedValue(); getContext().getTheme().resolveAttribute( R.attr.dialogCustomTitleDecorLayout, res, true); layoutResource = res.resourceId; } else { layoutResource = R.layout.screen_custom_title; } removeFeature(FEATURE_ACTION_BAR); } else if ((features & (1 << FEATURE_NO_TITLE)) == 0) { if (mIsFloating) { TypedValue res = new TypedValue(); getContext().getTheme().resolveAttribute( R.attr.dialogTitleDecorLayout, res, true); layoutResource = res.resourceId; } else if ((features & (1 << FEATURE_ACTION_BAR)) != 0) { layoutResource = a.getResourceId( R.styleable.Window_windowActionBarFullscreenDecorLayout, R.layout.screen_action_bar); } else { layoutResource = R.layout.screen_title; } } else if ((features & (1 << FEATURE_ACTION_MODE_OVERLAY)) != 0) { layoutResource = R.layout.screen_simple_overlay_action_mode; } else { layoutResource = R.layout.screen_simple; } mDecor.startChanging(); // 关键点,解析资源文件并将解析后的View添加到 DecorView 中 mDecor.onResourcesLoaded(mLayoutInflater, layoutResource); // 布局添加到 DecorView 中之后,通过 findViewById() 找到用于填充内容的 contentParent (FrameLayout 布局) ViewGroup contentParent = (ViewGroup)findViewById(ID_ANDROID_CONTENT); if (contentParent == null) { throw new RuntimeException("Window couldn't find content container view"); } // 设置窗体背景等 return contentParent; }
以上代码中的资源文件位于 ...\sdk\platforms\android-29\data\res\layout
目录下(android-29表示对应的android版本),以下是 screen_title.xml 文件中的内容:
其他不同的资源文件具体内容可以自行查看,最外层都是 LinearLayout
包裹的,也就就是为什么在上方图中,DecorView
中为什么先包含了LinearLayout
之后,在 LinearLayout
中包含 ActionView、TitleView、ContentParent 的原因。
-
关键点,解析资源文件并将解析后的View添加到。查看
DecorView
中的onResourcesLoaded()
方法:void onResourcesLoaded(LayoutInflater inflater, int layoutResource) { if (mBackdropFrameRenderer != null) { loadBackgroundDrawablesIfNeeded(); mBackdropFrameRenderer.onResourcesLoaded( this, mResizingBackgroundDrawable, mCaptionBackgroundDrawable, mUserCaptionBackgroundDrawable, getCurrentColor(mStatusColorViewState), getCurrentColor(mNavigationColorViewState)); } mDecorCaptionView = createDecorCaptionView(inflater); final View root = inflater.inflate(layoutResource, null); if (mDecorCaptionView != null) { if (mDecorCaptionView.getParent() == null) { addView(mDecorCaptionView, new ViewGroup.LayoutParams(MATCH_PARENT, MATCH_PARENT)); } mDecorCaptionView.addView(root, new ViewGroup.MarginLayoutParams(MATCH_PARENT, MATCH_PARENT)); } else { // Put it below the color views. addView(root, 0, new ViewGroup.LayoutParams(MATCH_PARENT, MATCH_PARENT)); } mContentRoot = (ViewGroup) root; initializeElevation(); }
当完成后,我们回头继续看 PhoneWindow
中的 setContentView()
方法中的 mLayoutInflater.inflate(layoutResID, mContentParent)
这行代码,这行代码的作用就是将自定义的界面布局加载到 mContentParent
中。具体的实现过程,可以通过《Android inflate解析》和《Android inflate实例解析》 进行了解。
通过以上过程,我们就从源码方面知道了 Activity
的组成以及 setContentView()
方法的具体执行过程了。下面做一个简单的总结:
-
setContentView()
方法过程总结:在
Activity
中调用setContentView()
方法, 实际上是调用的PhoneWindow
中的setContentView()
方法,在PhoneWindow
中的setContentView()
方法中会调用installDecor()
方法去创建一个DecorView
对象,然后根据不同情况加载进不同的布局(最外层都是 LinearLayout 包裹的,包含的具体控件一定有表示内容的 Content,根据情况包含 ActionView 和 TitleView)到DecorView
中;最后通过LayoutInflater.inflate()
方法将自定义的界面布局加载到mContentParent
中。 -
Activity
的组成总结:Activity
包含了一个管理窗口的继承至Window
的PhoneWindow
对象,而在PhoneWindow
中创建了一个继承至FrameLayout
类的DecorView
对象,并且把包含了ActionBar、TitleBar和Content的布局文件通过addView()
方法添加到了DecorView
中,当开发者定义了layout.xml布局并调用了setContentView()
方法时,就是将自定义的布局加载到了DecorView
中表示 content 的部分(setContentView()
部分具体过程同 【setContentView()
方法过程总结】)。
Activity中PhoneWindow在什么时候创建的
通过查看Activity
的源码可以找到PhoneWindow
的创建是在Activity
的attach()
方法中(attach()
方法在Activity
中是onCreate()
方法调用之前系统自动调用的一个方法),同时也获取到了WindowManager
对象
final void attach(Context context, ActivityThread aThread,
Instrumentation instr, IBinder token, int ident,
Application application, Intent intent, ActivityInfo info,
CharSequence title, Activity parent, String id,
NonConfigurationInstances lastNonConfigurationInstances,
Configuration config, String referrer, IVoiceInteractor voiceInteractor) {
attachBaseContext(context);
...
// 创建PhoneWindow对象
mWindow = new PhoneWindow(this);
... // 将各种参数赋给Activity的成员变量
// 通过PhoneWindow对象获取mWindowManager对象
mWindowManager = mWindow.getWindowManager();
...
}
Activty
系统回调 attach()
方法的过程可以通过以下博客了解:
- 《Android Activity——启动过程探索(一)》
- 《Android Activity——启动过程探索(二)》
- 《Android Activity——启动过程探索(三)》