What is the "context" meaning in Android?
Possible Duplicate:
What is Context in Android?
I think its a very interesting question: What is the "context" meaning/concept in Android ?
Almost any things/object need context to working properly. What is the "context" represented? An integer ? a block of memory ?? or .....
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.
Source: http://developer.android.com/reference/android/content/Context.html
链接地址: http://www.djcxy.com/p/91358.html上一篇: 理解和使用上下文
下一篇: Android中的“背景”含义是什么?