Geocoder.isPresent() 对于 Geocoder 类型未定义
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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