Geocoder.isPresent() 对于 Geocoder 类型未定义

发布于 2024-11-02 13:17:28 字数 391 浏览 3 评论 0原文

我的 Android 和 Java 技能不太热...

在 Geocoder 的developer.android.com 页面中,它说:

如果平台中没有后端服务,Geocoder 查询方法将返回空列表。使用 isPresent() 方法确定是否存在 Geocoder 实现。

但是,当我尝试调用时,例如:

if (Geocoder.isPresent()) {...

Eclipse 告诉我

未定义 Geocoder 类型的 isPresent() 方法

我如何“使用 isPresent() 方法”?

My Android and Java skills aren't so hot...

In the developer.android.com page for Geocoder, it says :

The Geocoder query methods will return an empty list if there no backend service in the platform. Use the isPresent() method to determine whether a Geocoder implementation exists.

However, when I try to call, for example :

if (Geocoder.isPresent()) {...

Eclipse tells me

The method isPresent() is undefined for the type Geocoder

How can I "use the isPresent() method"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

苍白女子 2024-11-09 13:17:28

public static boolean isPresent () 方法仅适用于 API 级别 9,这意味着您应该使用 Android 2.3 或更高版本。确保你正在使用它。然后检查Android SDK的Eclipse项目配置。

参考: http://developer.android.com/reference/android/location/Geocoder .html

public static boolean isPresent () method only available from API level 9, It means you should use Android 2.3 or latter version for that. Make sure you are using that. Then check Eclipse project configuration for Android SDK.

Reference: http://developer.android.com/reference/android/location/Geocoder.html

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