使用Google Maps v2

时间:2014-11-24 17:07:50

标签: android xml google-maps maps

我正在尝试在片段中使用谷歌地图,我已经做了谷歌所说的一切,我一直收到这个错误。

11-24 14:00:45.410: E/AndroidRuntime(12483): Caused by: java.lang.RuntimeException: API key not found.  Check that <meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="your API key"/> is in the <application> element of AndroidManifest.xml

我的AndroidManifest中有元数据,但它一直说我没有。

XML:

<fragment
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.MapFragment"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"/>
</fragment>

<View
    android:layout_width="match_parent"
    android:layout_height="2dp"
    android:background="@android:color/background_dark" />

<fragment
    android:id="@+id/about"
    android:name="com.hylamobi.speakup.fragments.about_fragment"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1" />

它只是顶部的地图,另一个片段中的一些按钮。

0 个答案:

没有答案