您的位置:首页

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

2017-06-14 14:18 369 查看

问题描写叙述

出错代码例如以下:

<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”
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐