这是我在指纹0o8CRg5BhPmqQB1pvyYZQNfJ2ZbpDMa6XFunRwA
我把它放在main.xml
文件中。应用程序在模拟器上正常工作并显示地图。但是当我在真实设备上部署它时,它没有显示任何地图。它只显示灰色背景而不是任何地图。我该怎么办?
main.xml文件
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="0o8CRg5BhPmqQB1pvyYZQNfJ2ZbpDMa6XFunRwA"
android:enabled="true"
/>
清单文件
?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.androidhive.googlemaps"
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" >
<!-- Add Google Map Library -->
<uses-library android:name="com.google.android.maps" />
<activity
android:label="@string/app_name"
android:name=".AndroidGoogleMapsActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<!-- Allow to connect with internet -->
</manifest>
答案 0 :(得分:2)
您是否为为设备创建APK文件时使用的调试证书和签名证书生成了密钥。如果您使用了调试证书的密钥而不是生产签名证书的密钥,则会显示一个没有显示地图的灰色屏幕。
<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="PUT-KEY-FOR-PRODUCTION-CERT-HERE"
/>
有关在此处生成调试和签名证书API密钥的详细信息:https://developers.google.com/maps/documentation/android/mapkey