编程语言
首页 > 编程语言> > java-Geocoder类型的Geocoder.isPresent()未定义

java-Geocoder类型的Geocoder.isPresent()未定义

作者:互联网

我的Android和Java技能不是很热门…

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

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.

但是,当我尝试致电时,例如:

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

Eclipse告诉我

The method isPresent() is undefined for the type Geocoder

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

解决方法:

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

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

标签:google-geocoder,java,android
来源: https://codeday.me/bug/20191208/2091957.html