地理编码器强制关闭

发布于 2024-12-11 18:34:24 字数 649 浏览 3 评论 0原文

我有这个应用程序,应该从经度和纬度获取地址,但当我按下按钮调用信息时,它会保持强制关闭。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

┊风居住的梦幻卍 2024-12-18 18:34:24

您使用的上下文可能是错误的,它应该是调用活动的上下文。

The context that you are using is probably wrong, it should be that of the calling Activity.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文