我已经下载了Google API,现在看来我的地图的标准问题似乎只是显示了一个灰色的抓地力,应该显示Google地图,如图所示:
我尝试了两个API密钥(通过生成一个新密钥)无济于事。我已在我的清单中添加了互联网权限和Google地图库,如下所示:
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.map"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".MainMap"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-library android:name="com.google.android.maps" />
</application>
</manifest>
API密钥:
这是我的地图XML布局:
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="AIzaSyBV_Zio-pysGWfjGo7dUpGvYRZ9PB3NQLc"/>
</RelativeLayout>
我将我的项目设置为Google API的SDK版本,与我的AVD相同。
当我的应用程序加载并且我的意图开始时,我在控制台中收到错误:
02-16 15:55:04.637: E/MapActivity(305): Couldn't get connection factory client
答案 0 :(得分:1)
我认为你的清单和布局文件都可以。这个问题通常是由于关键问题而发生的。通过使用SHA1证书指纹我有同样的问题。所以我去了MD5证书指纹。转到此网站https://developers.google.com/maps/documentation/android/v1/maps-api-signup并提供MD5指纹并获取密钥。得到MD5指纹
输入cd c:\ path-to-jdk-dir \ bin \
进入jdk的bin目录在我的情况下,我输入了CD C:\ Program Files \ Java \ jdk1.7.0_07 \ bin \
然后键入keytool -exportcert -alias androiddebugkey -keystore “C:\ Users \ user-name \ .android \ debug.keystore”-list -v
在我的情况下,我键入了keytool -exportcert -alias androiddebugkey -keystore“C:\ Users \ User \ .android \ debug.keystore”-list -v
然后会要求您输入密码。默认密码是android。
最后,您将获得MD5指纹。
答案 1 :(得分:0)
我在使用Android 2.3.3的模拟器上遇到了同样的问题,在搜索解决方案时,我发现这个操作系统版本的模拟器已知是一个已知问题。只是尝试使用不同版本的另一个模拟器,它应该工作。希望这会有所帮助。