谷歌地图应用程序不在Android中工作

时间:2013-08-02 12:05:58

标签: android

我是一名新的Android开发人员。 我已经制作了android谷歌地图应用, 但它只显示空的瓷砖(不显示地图)

我生成了5次API密钥&用它......但没有人在工作

Manifiest

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.akki"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="8" />

    <uses-permission android:name="android.permission.SET_DEBUG_APP" >
    </uses-permission>`enter code here`

    <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=".GoogleMapPracticeActivity" >
            <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 -->
    <uses-permission android:name="android.permission.INTERNET" />
</manifest>

XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <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:apiKey="AIzxxxxxxxxxxxxxxxxxxxxxxxxxxxxMh2JQY"
        android:clickable="true" />

</RelativeLayout>

1 个答案:

答案 0 :(得分:1)

使用Map v2,你可以从这里找到教程: https://developers.google.com/maps/documentation/android/start