私はこれを試しました:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<fragment xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.google.android.gms.maps.SupportMapFragment"
map:mapType="normal"
/>
</LinearLayout>
しかし、2つのエラーが発生しました:
<fragment xmlns:map="http://schemas.android.com/apk/res-auto"
:
タグ フラグメントに予期しない名前空間プレフィックス「xmlns」が見つかりました
2. map:mapType="normal"
:
タグ フラグメントに予期しない名前空間プレフィックス「マップ」が見つかりました
私のアプリに Google マップ以外のオブジェクトを統合するには、どのようにすればよいでしょうか...
thnx!
編集 !!
私はこれを試してみましたが、うまくいきます!
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
map:mapType="normal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.google.android.gms.maps.SupportMapFragment"
/>
</LinearLayout>
なぜだかわからない..何map:mapType="normal"
をxmlns:map="http://schemas.android.com/apk/res-auto"
意味するのかもわからない... ??