我刚开始编写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>
答案 0 :(得分:1)
andriod - &gt;安卓 这就是为什么它找不到前缀
答案 1 :(得分:1)
andriod:id="@+id/tvDisplay"
到
android:id="@+id/tvDisplay"
在那种拼写错误的所有行都这样做。