Google V2地图片段中的名称空间声明

时间:2013-08-19 23:59:28

标签: android google-maps

文档说我可以指定以下xml来定义v2映射...

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:map="http://schemas.android.com/apk/res-auto"
  android:id="@+id/map"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  class="com.google.android.gms.maps.SupportMapFragment"
  map:cameraBearing="112.5"
  map:cameraTargetLat="-33.796923"
  map:cameraTargetLng="150.922433"
  map:cameraTilt="30"
  map:cameraZoom="13"
  map:mapType="normal"
  map:uiCompass="false"
  map:uiRotateGestures="true"
  map:uiScrollGestures="false"
  map:uiTiltGestures="true"
  map:uiZoomControls="false"
  map:uiZoomGestures="true"/>

但是,当我尝试为我的地图片段定义执行此操作时,一个......

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

编译器标记两个xmlns行,说“意外命名空间前缀”xmlns“找到标记片段”

那么,我不明白的是什么? 谢谢,加里

1 个答案:

答案 0 :(得分:0)

xmlns声明移至顶级元素。