我试过这个:
<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>
但我有两个错误:
<fragment xmlns:map="http://schemas.android.com/apk/res-auto"
:
为标记片段找到意外的命名空间前缀“xmlns”
2 map:mapType="normal"
.:
为标签片段找到了意外的命名空间前缀“map”
我做错了什么,为了在我的应用程序中集成除 Google Map 之外的更多对象,它应该是什么样子......
谢谢!
编辑 !!
我试过这个,它有效!
<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"
意思... ??