首先我们来看下源码中源于Activity的定义:
public class Activity extends ContextThemeWrapper implements LayoutInflater.Factory2, Window.Callback, KeyEvent.Callback, OnCreateContextMenuListener, ComponentCallbacks2 { ... } 下面我们来详细分析每一部分的具体意义:
extends ContextThemeWrapper表示Activity本质上是一个ContextThemeWrapper,而ContextThemeWrapper具体是什么呢?看ContextThemeWrapper在源码中的定义:
public class ContextThemeWrapper extends ContextWrapper { ... }
可见ContextThemeWrapper是一个ContextWrapper,继续往下看:
public class ContextWrapper extends Context { Context mBase; ... }
ContextWrapper本质上是一个Context,context 的定义如下:
public abstract class Context { ... }
整体结构如下图所示(图引用自:http://blog.csdn.net/qinjuning/article/details/7310620):
Context是一个抽象类,因此可以知道Activity其实就是一个Context,并实现了一些接口,如何理解Context呢?
Context 俗称上下文,在很多对象定义中我们都用到了Context,例如ImageViewimageView = new ImageView(this); 这里的this就是当前Activity所在的Context,源码中对Context的解释如下:
Interface to global information about anapplication environment. This is an abstract class whose implementation isprovided by the Android system. It allows access to application-specificresources and classes, as well as up-calls for application-level operationssuch as launching activities, broadcasting and receiving intents, etc.
Context只是一个接口,真正实现Context功能的是ContexImpl类,为了了解Context具体有什么作用,我们先来了解下Context中定义了哪些接口:
public abstract ComponentNamestartService(Intent service); public abstract boolean stopService(Intentservice); public abstract void startActivity(Intentintent); public abstract void sendBroadcast(Intentintent); public abstract Intent registerReceiver(BroadcastReceiverreceiver, IntentFilter filter); public abstract Resources getResources();ContextWrapper仅仅是对Context的简单封装,如果要对Context修改,我们只需要修改ContextWrapper,而不需要对通用的Context进行修改,ContextWrapper的目的仅此而已。而ContextThemeWrapper只是在ContextWrapper的基础上加入了Theme相关的一些内容,对于Activity来说需要处理一些Theme相关的东西,但是对于Service来说只需继承ContextWrapper,因为Service不需要处理Theme相关的内容。
分析完extends部分,我们再来看下implements部分,extends决定了Activity的本质,implements部分可以认为是对Activity的扩展。
通过以上分析,我们大概了解了Activity具体是什么了,这对以后理解Activity应该能带来一定的帮助。
由于本人刚学Anroid不久,有什么不对的地方请麻烦指正~