Android编程中的上下文
可能重复:
Android中的Context是什么?
任何人都可以告诉我关于android中使用的“上下文”术语。 我不知道这意味着什么,因为这是我在很多地方看到的东西。
我发现它是一个类: - “有关应用程序环境的全局信息的接口”,但我现在还不太清楚。
实例:public GetCurrentLocation(Context context){this.context = context; }
谢谢,大卫
我在这里回答了
this.context =上下文被写入混淆。 另一种写法是:
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
}
// ..
}
链接地址: http://www.djcxy.com/p/91363.html