本文主要是介绍Android 进阶解密 -上下文 Context,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
ContextImpl 和 ContextWrapper 继承自 Context,ContextWrapper 内部包含 Context 类型的 mBase 对象,mBase 具体指向 ContextImpl,ContextImpl 提供了很多功能,但是外界需要使用并拓展 ContextImpl 的功能,因此设计上使用了装饰模式,ContextWrapper 是装饰类,它对 ContextImpl 进行包装, ContextWrapper 主要是起到了方法传递的作用,ContextWrapper 中几乎所有的方法都是调用 ContextImpl 的相应方法来实现的。ContextThemeWrapper,Service 和 Application 都继承自 ContextWrapper ,这样它们都可以通过 mBase 来使用 Context 的方法,同时他们也是装饰类,在 ContextWrapper 的基础上又添加了不同的功能。ContextThemeWrapper 中包含和主题相关的方法(比如 getTheme 方法),因此,需要主题的 Activity 继承 ContextThemeWrapper,而不需要主题的 Service 继承 ContextWrapper。
Context 的关联类采用装饰模式,主要有以下的优点:
- 使用者(比如 Service)能够方便的使用 Context。
- 如果 ContextImpl 发生了变化,它的装饰类 ContextWrapper 不需要做任何修改。
- ContextImpl 的实现不会暴露给使用者,使用者也不必关心 ContextImpl 的实现。
- 通过组合而非继承的方式,拓展 ComtextImpl 的功能,在运行时选择不同的装饰类,实现不同的功能。
这篇关于Android 进阶解密 -上下文 Context的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!