【解决方法】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="#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”

原文地址:https://www.cnblogs.com/liguangsunls/p/7008608.html