码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-07-24 10:54:11      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

问题描述

出错代码如下:

<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="#ffffffff"
    >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center"

    > 

在第二个LinearLayout 的 xmlns:android=”http://schemas.android.com/apk/res/android”出错

解决方法

去掉 第二个”xmlns:android=”http://schemas.android.com/apk/res/android”

版权声明:本文为博主原创文章,未经博主允许不得转载。

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

标签:

原文地址:http://blog.csdn.net/zwhlxl/article/details/47036063

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!