invalid tokens in android XML -
just starting android development , trying create ui here.. getting following: /res/layout/main.xml:13: error: error parsing xml: not well-formed (invalid token)
any ideas?
<?xml version="1.0" encoding="utf-8"?> <relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <tablelayout android:id="@+id/entrybar" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignparentbottom="true" android:stretchcolumns="1" > <tablerow <edittext android:id="@+id/taskentry" /> </tablerow> <tablerow <button android:id="@+id/add" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="add" /> </tablerow> </tablelayout> <listview android:id="@+id/tasks" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignparenttop="true" android:layout_above="@id/entrybar" /> </relativelayout>
you missed > after first <tablerow
Comments
Post a Comment