地理编码器强制关闭
我有这个应用程序,应该从经度和纬度获取地址,但当我按下按钮调用信息时,它会保持强制关闭。
Logcat 错误:
10-25 14:33:51.802: ERROR/AndroidRuntime(11166): at http.www.hotapp.com.timeandlocation.LocationManagerHelper.getAddress(LocationManagerHelper.java:51)
我的地理编码器代码
public static boolean getAddress(){
Geocoder geoCoder = new Geocoder(context);
try {
geoCoder.getFromLocation(getLatitude(), getLongitude(), 0);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return true;
}
logcat 错误表明该错误与新地理编码器
有关。请帮忙。
I have this application that is supposed to get the address from longitude and latitude but it keeps forceclosing when I push the button to call the information.
Logcat Error:
10-25 14:33:51.802: ERROR/AndroidRuntime(11166): at http.www.hotapp.com.timeandlocation.LocationManagerHelper.getAddress(LocationManagerHelper.java:51)
My Geocoder Code
public static boolean getAddress(){
Geocoder geoCoder = new Geocoder(context);
try {
geoCoder.getFromLocation(getLatitude(), getLongitude(), 0);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return true;
}
The logcat error is saying that the error is on the line with new Geocoder
. please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的上下文可能是错误的,它应该是调用活动的上下文。
The context that you are using is probably wrong, it should be that of the calling Activity.