微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

令人费解的Android xmlns错误

我在许多地图示例中遇到过这样的代码

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

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

</RelativeLayout>

然而,对于他们所有人来说,我得到了错误

Description Resource Path Location Type Unexpected namespace prefix
“xmlns” found for tag
fragment activity_msmap.xml /example/res/layout line 8 Android Lint
Problem

在线

<fragment xmlns:android="http://schemas.android.com/apk/res/android"

那么……这里发生了什么?我在各地的例子中看到它,但它导致我的Eclipse / Android出错?另外,为什么在父元素中也定义了同样的xml命名空间?

解决方法:

您无法在xml布局中两次定义命名空间.
只需从片段中删除它,RelativeLayout已经定义了xmlns:android命名空间.

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐