2

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" >
4

3 回答 3

13

那是因为xmlns:tools="http://schemas.android.com/tools"缺少。代码应如下所示:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    tools:context=".MainMenuActivity" >
于 2013-08-18T16:42:47.720 回答
1

添加xmlns:tools="http://schemas.android.com/tools"到您的布局

另请注意,您的布局应该只有一个命名空间,并且应该在父布局中使用!

将您的代码更改为

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    tools:context=".MainMenuActivity" >
于 2013-08-18T16:44:55.897 回答
1

请将 xmlns:tools="http://schemas.android.com/tools" 添加到您的代码中。

于 2014-04-01T13:10:16.613 回答