我遇到了同样的问题,我已经意识到大多数人已经在这里...但是当我尝试使用任何线程上提供的解决方案来修复它时,我无法成功。
这是我的AndroidManifest.xml(我想这里没有问题 - 我知道有一些未使用的权限没有引起注意):
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.acilSRV.client"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION"></uses-permission>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<uses-library android:name="com.google.android.maps"/>
<activity android:name=".AcilActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我的main.xml(我已经多次重新检查api密钥,它适用于 debug.keystore ):
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Address info"
android:layout_marginBottom="20dp"
android:layout_marginTop="10dp"
android:id="@+id/txt_addressinfo"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
/>
<com.google.android.maps.MapView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="****"
android:id="@+id/mapView"
/>
</LinearLayout>
所以这些是核心配置,我猜你必须同意上面的代码没有问题......但是为什么我在运行应用程序时遇到“无法获取连接工厂客户端”错误消息 - 我有我的地图外观(这证明了api密钥的合法性),但是当我使用 geo fix 来提供不同的位置,返回我的LocationProvider.TEMPORARILY_UNAVAILABLE,我想我得到的是因为上面的错误消息..
我正在使用Ant进行构建和Google地图修订版10 api ...有关此奇怪案例的任何建议吗?它可能是由于debug.keystore密钥库文件引起的吗?我是否必须测试另一个密钥库文件?!