属性缺少工具的Android名称空间前缀:context

时间:2013-08-18 16:42:48

标签: android xml eclipse namespaces

Eclipse编辑器为以下XML提供了“Attribute is missing the Android namespace prefix”错误:

<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 个答案:

答案 0 :(得分:12)

这是因为缺少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" >

答案 1 :(得分: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" >

答案 2 :(得分:1)

请在您的代码中添加xmlns:tools =“http://schemas.android.com/tools”。