0

我正在尝试使用 android studio 让 google maps v2 在 android 中工作。我得到了所有的密钥和清单设置。当我尝试为地图将显示的实际活动创建 xml 时,我得到了错误。我的 xml 看起来像这样:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                tools:context=".MainActivity" >

    <fragment xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/map"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              class="com.google.android.gms.maps.SupportMapFragment"/>
</RelativeLayout>

我在 android studio 中的错误如下所示:

在此处输入图像描述

4

2 回答 2

1

这也发生在我身上。只需清理项目。

于 2013-08-24T14:47:40.410 回答
-1

您好,您必须在 xml 文件中使用此代码:

<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/map"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:name="com.google.android.gms.maps.SupportMapFragment"/>
于 2014-08-24T22:51:23.597 回答