android 学习一: Context 类

来源:互联网 发布:淘宝模板代码生成器 编辑:程序博客网 时间:2024/04/27 04:19
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



0 0
原创粉丝点击