Refer to table looks I'm quite new to android development.I need to display dynamic list of data in table form. The image link above show a table contain a product image on relative left of the other table row field.
What kinds of combination tag should I use ? Noted that those items is dynamic "grow" based on database.
<LinerLayout>
<tableLayout>
<tableRow>
<image>...?
</tableRow>
</tableLayout>
<tableLayout>
<TableRow >
<TextView android:id="@+id/itemId"
android:text="@string/itemId"/>
</TableRow>
<TableRow >
<TextView android:id="@+id/name"
android:text="@string/name"/>/>
</TableRow>
<TableRow >
<TextView android:id="@+id/qty"
android:text="@string/qty"/>/>
</TableRow>
</tableLayout>
</LinerLayout>