A warning occours in eclipse when I tried to make a android table layout in xml this warning comes at table row of the layout part:
This TableRow view is useless (no children, no background, no id)
<TableRow android:layout_width="fill_parent" android:layout_height="wrap_content">
</TableRow>
Plese tell me how to overcome this warning.Thanks in advance.
If you know that you use this
TableRow(e.g. you add children to it later in the code) just ignore the warning.Upd: you can’t use this
TableRowin code without id assigned to it. Why do you need theTableRow?