解析XML时出错:使用android:id或android:text时出现未绑定的前缀

时间:2014-05-24 21:10:00

标签: android xml android-layout

我刚开始编写java / android而且我无法解释为什么我会收到Error parsing XML: unbound prefix错误以及attribute is missing the android namespace prefix.我正在使用Eclipse。 Error parsing XML: unbound prefix 错误来自以下行:

andriod:id="@+id/tvDisplay"  

attribute is missing the android namespace prefix 来自:

andriod:text="Add One"
andriod:layout_gravity="center"
andriod:textSize="20dp"

代码:

<RelativeLayout 
    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: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="com.Marett.Driod.MainActivity$PlaceholderFragment" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/Total"
        android:textSize="45sp" 
        andriod:id="@+id/tvDisplay"
        />
<Button 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    andriod:text="Add One"
    andriod:layout_gravity="center"
    andriod:textSize="20dp"
    />

</RelativeLayout>

2 个答案:

答案 0 :(得分:1)

andriod - &gt;安卓 这就是为什么它找不到前缀

答案 1 :(得分:1)

andrOId 中有拼写错误。变化:

andriod:id="@+id/tvDisplay"

android:id="@+id/tvDisplay"

在那种拼写错误的所有行都这样做。