我在模拟器和手机(带有Android 4.1的Nexus S)上使用Geocoder.getLocationFromName()方法,我得到以下异常:
java.io.IOException: Service not Available
在模拟器上出现了很多关于此问题的问题(example),并且大多数人都说它是具有问题的模拟器的特定版本。但是,例外情况出现在我的AVD(2.3和4.1)和我的手机上。
我的手机和AVD都有互联网连接。我的API版本是16(android 4.1),但我也尝试过较旧版本。两种AVD都包含Google API。
这里有什么想法?
这是相关的代码段:
Geocoder myGeocoder = new Geocoder(getApplicationContext(), Locale.getDefault());
List<Address> newAddresses = myGeocoder.getFromLocationName(arg0.toString(), 10);
这是我的表现:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.asdasd" android:versionCode="6" android:versionName="1.3.1">
<uses-sdk android:minSdkVersion="16" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<application android:icon="@drawable/ic_launcher_asdasd"
android:label="@string/app_name">
<activity android:name=".AsdasdActivity" android:label="@string/app_name"
android:screenOrientation="portrait" android:windowSoftInputMode="stateHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation" />
</application>
</manifest>
答案 0 :(得分:7)
确保您的应用程序的构建目标设置为 Google API 之一,而不仅仅是 Android 4.0 (或类似)。您可以通过右键单击项目并选择“属性”然后选择“Android”来更改Eclipse中的此设置。或者,您只需将project.properties
文件编辑为以下内容:
# Project target
target=Google Inc.:Google APIs:16
原因是核心Android框架中存在Geocoder
类,但依赖于Google API提供的代码才能正常运行。即使您的AVD包含Google API,您的项目仍需要针对特定的构建目标进行构建。