Unexpected namespace prefix "xmlns" found for tag Linear Layout

原文地址http://blog.csdn.net/taxuexumei/article/details/41523419

今天遇到的问题,,,保存到博客里,下回遇到找博客就行了,,,,,,

今天在制作安卓UI嵌套式布局的时候,当出入以下的的代码的时候出现以下情况:
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="${relativePackage}.${activityClass}" >

<Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="北京魔乐科技" />
    <LinearLayout
        【xmlns:android="http://schemas.android.com/apk/res/android"】
        android:orientation="vertical"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content" >
        <ImageView 
            android:src="@drawable/ic_launcher"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"/>
        <ImageView 
            android:src="@drawable/ic_launcher"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"/>
    </LinearLayout>
    <TableLayout 
        【xmlns:android="http://schemas.android.com/apk/res/android"】
        android:orientation="vertical"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content" >
        
    </TableLayout>

</LinearLayout>
【】此括号内标记的东西出现红色下划线。
出现了以下
Unexpected namespace prefix "xmlns" found for tag LinearLayout
的错误,我的解决方法是

是一个namespace声明只要在xml中出现一次就可以了,多次出现就报错,以前好像没这要求。
只保留第一个声明,后面的直接删除就OK了。

//////////////////////////

有一次升级开发工具后发现xml脚本出现错误“Unexpected namespace prefix "xmlns" found for tag LinearLayout”,原来是一个namespace声明只要在xml中出现一次就可以了,多次出现就报错,以前好像没这要求。

只保留第一个声明,后面的直接删除就OK了。

时间: 2024-11-02 15:46:49

Unexpected namespace prefix "xmlns" found for tag Linear Layout的相关文章

错误“Unexpected namespace prefix &quot;xmlns&quot; found for tag LinearLayout”的解决方法(转)

(转自:http://blog.csdn.net/bombzhang/article/details/12676789) 有一次升级开发工具后发现xml脚本出现错误“Unexpected namespace prefix "xmlns" found for tag LinearLayout”,原来是一个namespace声明只要在xml中出现一次就可以了,多次出现就报错,以前好像没这要求. 只保留第一个声明,后面的直接删除就OK了. 遇到此问自己测试,依上面处理已经解决,体会得出两方面

错误“Unexpected namespace prefix &quot;xmlns&quot; found for tag LinearLayout”的解决方法

编写布局代码时发现xml脚本出现错误“Unexpected namespace prefix "xmlns" found for tag LinearLayout”,原来是一个namespace声明只要在xml中出现一次就可以了,多次出现就报错,老版本没这要求,新版本进行了改进. 只保留第一个声明,后面的直接删除就OK了. 该问题的解决地址: http://stackoverflow.com/questions/14916638/unexpected-namespace-prefix-

【解决方法】Unexpected namespace prefix “xmlns” found for tag Layout

问题描述 出错代码如下: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="

Unexpected namespace prefix &quot;xmlns&quot; found for tag ScrollView

xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" 这两句一直报错…… 出现该错误是因为布局中只需要出现一次xmlns:android="http://schemas.android.com/apk/res/android",删掉报错语句即可.

Unexpected namespace prefix "custom" found for tag

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:custom="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.androi

Android学习笔记二-Linear Layout

1.LinearLayout是子view均为单方向的,即均为水平或垂直方向的布局.你可以用android:orientation属性来 定义layout方向 所有子view都是一个挨着一个的,所以一个垂直列表,不管它本身多宽,同时只能有一行.若是水平列表,则都等高. 2.LayoutWeight 用来操控各个子view的相对比例,,即各个子元素对空间的使用权重 Weight并非网上很多文章所叙述的那样(文章都过于片面),weight是指某个组件在布局中[剩余空间]中的显示权重,那么所谓的剩余空间

Android添加垂直滚动ScrollView 常见问题

今天在使用ScrollView时出现错误,提示: Unexpected namespace prefix "xmlns" found for tag ScrollView 布局如下: <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"       xmlns:tools="http://schemas.android.com/tools"       

Android自定义控件的属性配置

在Android的xml布局文件里,xmlns:android="http://schemas.android.com/apk/res/android",就是定义了xml的命名空间,以android开头,比如:android:id="@+id/i_am" 有时候,我们也想自定义命名空间.比如,在xmlns:android="http://schemas.android.com/apk/res/android"的下面写上:xmlns:app=&qu

Tag文件和Tag标记

1 Tag文件的结构 ?Tag文件 ?扩展名为.tag的文本文件 ?结构几乎和JSP文件相同 ?一个Tag文件中可以有 ?普通的HTML标记符 ?某些特殊的指令标记(与JSP指令.动作标记对应) ?成员变量和方法 ?Java程序片 ?Java表达式. AddSum.tag <p>这是一个Tag文件,负责计算1~100内的奇数之和: <% int sum=0,i=1; for(i=1;i<=100;i++) { if(i%2==1) sum=sum+I; } out.println(