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

Xeo*_*eos 2 xml eclipse android 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" >
Run Code Online (Sandbox Code Playgroud)

Xeo*_*eos 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" >
Run Code Online (Sandbox Code Playgroud)