我在Android中有一个应用程序,它位于与UI不同的线程中(实现了Runnable)
我收到一些数据(纬度和经度形式的GPS数据),并从此数据I
希望通过将其传递给Geocoder来找到正确的地址.....之后,Geocoder返回的地址将其存储在数据库中:
以下是我如何做这些事情:
public class Client implemets Runnable{
public void run()
{
Geocoder myLocation=new Geocoder(getApllicationContext,Locale.getDefault());
}
}
但我在这里收到错误:
Geocoder myLocation=new Geocoder(getApplicationContext,Locale.getDefault());
Runnable不知道谁是getApplicationContext
.....我试过用“this”而不是同样的故事......
现在哪个是传递给Geocoder构造函数的正确上下文????
以下是Geocoder构造函数的外观:
Geocoder myLocation =new Geocoder(context,locale);
在我的活动中,我这样做:
public class Server2 extends Activity {
public void onCreate(Bundle icicle) {
ClientThread_special client = new ClientThread_special(db);//here is where I start thread
new Thread(client).start();
}
}
public class ClientThread_special implements Runnable {
public ClientThread_special(DBAdapter db){
this.db=db;
}
public void run()
{
Geocoder myLocation=new Geocoder(getApllicationContext,Locale.getDefault());
}
}
我应该如何修改构造函数
public ClientThread_special(DBAdapter db){
this.db=db;
}
为了在Runnable中拥有Server2的上下文?
答案 0 :(得分:10)
我猜你的班级ClientThreadSpecial
是一个单独的班级(不是内班)?如果是这样,为什么不从调用Activity传递上下文?
如果它是一个内部阶级,那就更容易了。假设你的ClientThreadSpecial
- 类是MyActivity
- 类的内部类(扩展了Activity),你可以使用这样的东西:
Geocoder myLocation=new Geocoder(MyActivity.this,Locale.getDefault());
答案 1 :(得分:3)
您无法使用this
,因为this
指的是Runnable。由于Runnable是在MyActivity中定义的(替换为您的活动/服务名称),因此您可以参考MyActivity.this
。