1

ドキュメントには、次の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」が見つかりました」という 2 つの xmlns 行にフラグを立てます。

それで、私は何を理解していませんか?ありがとう、ゲイリー

4

1 に答える 1

0

xmlns宣言を最上位要素に移動します。

于 2013-08-20T02:41:09.170 に答える