为标记片段找到意外的名称空间前缀"xmlns"为标记片段找到的意外名称空间前缀"map"

Mr.*_*ing 7 android google-maps

为标记片段找到的意外名称空间前缀"xmlns"为什么为标记片段找到了
意外的名称空间前缀"map"?

<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=".Main">

    <fragment xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:map="http://schemas.android.com/apk/res-auto"
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.MapFragment"

        map:mapType="satellite"/>
</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)

为标记片段找到的意外名称空间前缀"xmlns"为什么为标记片段找到了意外的名称空间前缀"map"?

Com*_*are 18

xmlns:android="http://schemas.android.com/apk/res/android"<fragment>元素中删除,并考虑xmlns:map="http://schemas.android.com/apk/res-auto"<fragment>元素移动到根元素.

例如,这是有效的:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    android:id="@+id/foo"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <fragment
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.SupportMapFragment"
        map:mapType="satellite"/>

</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)

  • 每当我编辑包含Map的布局文件时,我总是会收到该错误.只需转到Project> Clean.我想使用include可以帮助您在编辑布局的其余部分时避免错误. (5认同)
  • 是的,最后,我使用<include layout ="@ layout/XXX"/>,然后就可以了. (2认同)