Eclipse编辑器针对以下XML给出“属性缺少Android命名空间前缀”错误:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:context=".MainMenuActivity" >
3条答案
按热度按时间idfiyjo81#
这是因为缺少
xmlns:tools="http://schemas.android.com/tools"
。代码应如下所示:ercv8c1e2#
添加
xmlns:tools="http://schemas.android.com/tools"
到你的布局同时也要注意,你的布局应该只有一个命名空间,并且应该在父布局中使用!
将代码更改为
mrfwxfqh3#
请添加xmlns:tools=”http://schemas.android.com/tools“到您的代码。