我在Eclipse上的xml代码中有错误,请你帮帮我:c
这是我的代码的一部分:
<TableRow
....
<TextView
android:layout_span="3"
android:id="@+id/myTextView2"
android:background="#000000"
android:textSize="24sp" />
...
</TableRow>
错误说:
元素类型TableRow
必须后跟属性规范>
或/>
。
答案 0 :(得分:0)
<TableRow
这部分代码应该是
<TableRow android:layout_width=...
android:layout_height=...>
换句话说 - 标签应该关闭