属性缺少名称空间前缀

时间:2014-11-26 11:07:02

标签: android xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:gravity="top">
    <TextViewandroid:id="@+id/label"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Type here:"/>
<EditText
    android:id="@+id/entry"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/label"/>
<Button
    android:id="@+id/ok"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/entry"
    android:layout_alignParentRight="true"
    android:layout_marginLeft="10dip"
    android:text="OK" />
<Button
    android:layout_alignTop="@id/ok"
    android:text="Cancel"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:layout_toLeftOf="@+id/ok"
    android:layout_below="@+id/entry"/>
</RelativeLayout>

我刚刚开始学习Android apk编程,我遇到了这个问题:“属性缺少命名空间前缀”。 我怎样才能解决这个问题?请回复..任何回复都会很棒谢谢

3 个答案:

答案 0 :(得分:0)

问题在于间距。试试这个..

   <?xml version="1.0" encoding="utf-8"?>
   <RelativeLayout 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:gravity="top">
   <TextView android:id="@+id/label"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Type here:"/>
   <EditText
     android:id="@+id/entry"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:layout_below="@id/label"/>
   <Button
     android:id="@+id/ok"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_below="@id/entry"
     android:layout_alignParentRight="true"
     android:layout_marginLeft="10dip"
     android:text="OK" />
   <Button
     android:layout_alignTop="@id/ok"
     android:text="Cancel"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:layout_toLeftOf="@+id/ok"
    android:layout_below="@+id/entry"/>
   </RelativeLayout>

答案 1 :(得分:0)

变化:

TextViewandroid:id="@+id/label"

到:

TextView android:id="@+id/label"

答案 2 :(得分:0)

u shud在小部件名称后面给出一些空格。替换下面的代码它将起作用。

<TextView
    android:id="@+id/label"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Type here:"/>