/** * Interface to global information about an application environment. This is * an abstract class whose implementation is provided by * the Android system. It * allows access to application-specific resources and classes, as well as * up-calls for application-level operations such as launching activities, * broadcasting and receiving intents, etc. * * Context描述了一個應用程序環境的全局信息。 * 它是一個抽象類,由系統提供它的實現方法。 * 經過它能夠訪問application中的資源和類,進行一些應用級別的操做,好比啓動activity、broadcasting、 * 接受intent等。 */
一、Context是一個抽象類,ContextImpl是其實現。全部有關Context的調用實際上都是ContextImpl實現的。java
二、Context有一個子類是ContextWrapper,ContextWrapper中持有一個ContextImpl的實例。對ContextWrapper有關Context的接口調用ContextWrapper都會經過ContextImpl來實現。這裏使用到了裝飾者模式。有關裝飾者模式,具體能夠參考http://www.javashuo.com/article/p-vmxgehma-hy.htmlapp
三、ContextWrapper有一個子類是ContextThemeWrapper,顧名思義它是跟界面相關的ContextWrapper。ide
四、Application、Service繼承於ContextWrapper。Activity繼承於ContextThemeWrapper。spa
ActivityManagerService -> ActivityThread的main()程序主入口 -> 建立Handler -> 接受事件(好比LAUNCH_ACTIVITY、BIND_APPLICATION等) -> LaunchAtivity爲例,handleLaunchActivity() -> performLaunchActivity()中.net
1.經過Instrumentation構造一個Activity對象code
2.經過Instrumentation構造一個Application對象orm
3.經過createBaseContextForActivity()建立ContextImpl實例,經過setOuterContext和Activity對象綁定對象
4.獲取Configuration對象blog
5.經過attach將context保存到Activity中繼承
PS:ActivityManagerService藉助ActivityStack是來把全部的Activity按照後進先出的順序放在一個堆棧中;對於每個應用程序來講,都有一個ActivityThread來表示應用程序的主進程,而每個ActivityThread都包含有一個ApplicationThread實例,它是一個Binder對象,負責和其它進程進行通訊。