xml文件中的错误(android编程):未绑定的前缀

时间:2014-02-23 23:18:50

标签: android xml prefix

我对android编程很新,我遇到一个奇怪的错误导致我的应用程序无法编译。

这是我的代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="three" />
</LinearLayout>

它给了我“错误:解析XML时出错:未绑定的前缀”

1 个答案:

答案 0 :(得分:1)

您需要将名称空间声明xmlns:android="http://schemas.android.com/apk/res/android"添加到LinearLayout

<?xml version="1.0" encoding="utf-8"?>
<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="vertical" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="three" />
</LinearLayout>