-1

这是我在指纹后得到的谷歌地图密钥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>
4

1 回答 1

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

于 2012-11-14T09:13:13.177 回答