-1

これは、指紋認証後に取得した Google マップ キーです。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 に答える