what is Android Context and why is it needed
Possible Duplicate:
What is Context in Android?
我想知道Android的具体环境是什么,以及为什么需要它。我知道它与类相关,每个类都有一个独特的上下文。我在一些代码中见过,这些代码在调用另一个类的方法时传递上下文。我不明白为什么需要它。请帮忙。
所有类都没有Android上下文。它们是应用程序上下文和活动C上下文。上下文用于许多事情,但大多数情况下它只是为了加载和访问资源。
有关详细信息,请参阅:http://developer.android.com/reference/android/content/context.html。
语境是:
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.
参考:http://developer.android.com/reference/android/content/context.html
Android上下文保存有关应用程序环境的信息。
您可能需要查看官方参考资料,以便了解您的上下文所保存的信息以及可以对其执行的操作。