MapsDemo不工作+ android

时间:2011-02-09 09:53:33

标签: android google-maps

我正在尝试使Google附加产品随附的MapsDemo项目正常运行。为此,我得到了默认调试证书的MD5指纹,并使用我生成的MAPS API KEY并在布局文件中使用它。 在清单文件中,我添加了它所需的所有权限。我的清单文件看起来像

<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>

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

<application android:label="@string/activity_sample_code"
        android:icon="@drawable/app_sample_code" >

    <uses-library android:name="com.google.android.maps" />

   <activity android:name="com.example.android.apis.MapsDemo" android:label="MapsDemo">
        <intent-filter>
            <category android:name="android.intent.category.LAUNCHER"></category>
            <action android:name="android.intent.action.MAIN"></action>
        </intent-filter>
   </activity>

    <!-- ************************************* -->
    <!--      VIEW/WIDGET PACKAGE SAMPLES      -->
    <!-- ************************************* -->

    <activity android:name="com.example.android.apis.view.MapViewDemo" android:label="MapView">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.SAMPLE_CODE" />
        </intent-filter>
    </activity>

    <activity android:name="com.example.android.apis.view.MapViewCompassDemo" android:label="MapView and Compass">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.SAMPLE_CODE" />
        </intent-filter>
    </activity>

我的地图布局文件看起来像

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/main"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent">
    <com.google.android.maps.MapView
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent"
        android:enabled="true"
        android:clickable="true"
        android:apiKey="0msDghc7PL9izft4M7VdAxRREci8JIZeBEULPvw"
        />
</LinearLayout>

但毕竟这一切,我看到的只是一个空白的gid屏幕。没有显示地图。请帮我解决这个问题。我在这做错了什么?

1 个答案:

答案 0 :(得分:0)

我认为google maps api v1已经弃用了。现在是V2访问https://developers.google.com/maps/documentation/android/的api文档。

您也可以尝试使用此快速入门指南https://docs.google.com/document/pub?id=19nQzvKP-CVLd7_VrpwnHfl-AE9fjbJySowONZZtNHzw

享受。 : - )