My XML code is:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<EditText xlmns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/field"
android:layout_width="fill_parent"
androud:layout_height="fill_parent"
android:sineLine="false"
/>
</LinearLayout>
What is wrong with it? The error:Error parsing XML: unbound prefix shows up!
I see two typos:
xmlnsasxlmnson theEditTextelement.androidprefix is spelledandroudThe following snippet corrects both problems:
On a related note, consider using a tool that provides better error messages. These typos were made obvious by the tool I used to validate your XML (RAD 7.5.5.3):
with an element type “EditText” is not bound.