Android编程中的上下文

Context in Android Programming

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
What is Context in Android?

有人能告诉我安卓中使用的"上下文"术语吗?我想知道这究竟意味着什么,因为这是我以前在很多地方看到的东西。

我发现它是一个类:"有关应用程序环境的全局信息的接口",但我现在还不太清楚。

例如:公共getcurrentLocation(上下文上下文){this.context=上下文;}

谢谢,戴维


我已经在这里回答了

this.context=context写得很混乱。另一种写相同内容的方法:

1
2
3
4
5
6
7
8
9
10
11
12
13
public class LocationClass {

private Context context_belonging_to_class = null;

// ..

public GetCurrentLocation(Context context_from_call_entity) {
  context_belonging_to_class = context_from_calling_entity; // initializing context variable
}

// ..

}