接收解析XML:未绑定前缀错误,Attribute缺少Android名称空间前缀

时间:2014-03-20 15:01:08

标签: android xml prefix

我收到错误消息:

  

错误:解析XML时出错:未绑定前缀

属性缺少Android名称空间前缀

我不明白为什么。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"

    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

<EditText
    android:id="@+id/edit_message"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:ems="10"
    android:hint="@string/edit_message"
    android:inputType="textPersonName" >

</EditText>

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/button_send"/>

</LinearLayout>

1 个答案:

答案 0 :(得分:4)

试试这个..

Android拼写错误andriod为什么属性缺少此andriod:hint="@string/edit_message"行中的Android命名空间前缀

android:hint="@string/edit_message"