theJava
theJava

Reputation: 15044

Xml error in Android

<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout
android:id="@+id/widget41"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
>

<TextView
android:id="@+id/widget62"
android:layout_width="300px"
android:layout_height="292px"
android:text="Patient education is an integral part of health care delivery across medical centers in developed countries thus encouraging active patient participation and ensuring far better compliance and patient satisfaction.  It was this very dream that inspired Dr. Aniruddha and Dr. Anjali Malpani, who founded HELP in 1997, with a dream to make each and every individual in this country aware of his rights and responsibilities as a patient, of ways people could reduce the burden of health care expenses by planning and educating themselves "before" a serious medical problem could strike their family, and how doctors and patients could join hands to achieve health for all.  What started as a resource center eleven years back, with a modest collection of material on patient education, in their day care center at Om Chambers, has grown into India's only largest patient education center housing more than 11,000 authentic books on possibly every aspect of health and diseases, along with pamphlets, health care magazines, and an exhaustive audiovisual section too"
android:layout_x="10px"
android:layout_y="32px"
>
</TextView>


<Button
android:id="@+id/widget63"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Next"
android:layout_x="130px"
android:layout_y="352px"
/>

</AbsoluteLayout>

I am getting this error and what's wrong in this?

Multiple annotations found at this line: - No grammar constraints (DTD or XML schema) detected for the document. - Element type "TextView" must be followed by either attribute specifications, ">" or "/>". - error: Error parsing XML: not well-formed (invalid token)

Upvotes: 3

Views: 4842

Answers (1)

Reuben Scratton
Reuben Scratton

Reputation: 38727

The xmlns-prefixed attribute on your root node should be the very first one the parser encounters.

Upvotes: 2

Related Questions