ошибка: ошибка синтаксического анализа XML: несвязанный префикс - PullRequest
0 голосов
/ 06 ноября 2011

Я новичок в разработке приложений для Android, и я пытаюсь отладить свой код, и я получаю сообщение об ошибке в строке 7. Тип ошибки - APPT, если это имеет значение.Насколько я могу судить, я не вижу ничего плохого в своем коде.Если у кого-то есть какие-либо идеи, мы будем очень признательны.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"> 

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

<EditText 
    android:id="@+id/ok"
    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:id="@+id/cancel"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toLeftOf="@+id/ok"
    android:layout_alignTop="@+id/ok"
    android:text="Cancel"/>

1 Ответ

1 голос
/ 06 ноября 2011

Эта строка

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android">

похоже на проблему. Попробуйте переместить > в конце android:orientation="vertical".

EDIT:

У вас также есть опечатка. abdroid:id="@+id/label" должно быть android:id="@+id/label"

И убедитесь, что вы завершили файл с помощью </RelativeLayout>, чтобы закрыть соответствующий элемент макета.

...