更多内容,请访问 bbhhhh.github.io
Android中context可以作很多操作,但是最主要的功能是加载和访问资源。
在android中有两种context,一种是application context,一种是activity context,通常我们在各种类和方法间传递的是activity context。
继承关系:
public class
Application
extends ContextWrapper
implements ComponentCallbacks2
java.lang.Object | |||
↳ | android.content.Context | ||
↳ | android.content.ContextWrapper | ||
↳ | android.app.Application |
public class
Activity
extends ContextThemeWrapper
implements ComponentCallbacks2 KeyEvent.Callback LayoutInflater.Factory2 View.OnCreateContextMenuListener Window.Callback
java.lang.Object | ||||
↳ | android.content.Context | |||
↳ | android.content.ContextWrapper | |||
↳ | android.view.ContextThemeWrapper | |||
↳ | android.app.Activity |