刚刚启动android开发并试图在这里创建一个UI ..但是得到以下内容:/res/layout/main.xml:13:错误:解析XML时出错:格式不正确(无效令牌)
任何想法?
<?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>
答案 0 :(得分:2)
您的TableRow
项目未正确结束,请尝试...
<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>
答案 1 :(得分:1)
你错过了一个&gt;在第一个&lt; TableRow
之后