This is my first android application, I face a bunch of problems. I want to make a design like in this image:

I tried many solutions to do it, but nothing work.
This is my code:
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<View
android:layout_height="2dip"
android:background="@color/dark_blue"/>
<!--Product information-->
<TableRow android:id="@+id/product_info">
<ImageView android:id="@+id/product_img"
android:src="@drawable/mdpi_product_verify_scan_code"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
/>
<TextView android:id="@+id/tvdesc"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="2"
android:text="description description description "
android:textColor="@color/black"
/>
</TableRow>
<View
android:layout_height="2dip"
android:background="@color/dark_blue"/>
<!--Images button-->
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Product Description"
android:textColor="@color/black"
android:textAppearance="?android:textAppearanceMedium"
/>
<FrameLayout
android:background="@color/dark_blue"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="top|left"
android:padding="5dp">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/mdpi_btn_show_images_icon"
android:background="@android:color/transparent"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Images"/>
</FrameLayout>
</TableRow>
<TableRow android:id="@+id/product_info">
<ImageView android:id="@+id/ima"
android:src="@drawable/mdpi_product_verify_scan_code"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
/>
<TextView android:id="@+id/tv2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="2"
android:text="description description description "
android:textColor="@color/black"
/>
</TableRow>
<!--Verification -->
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="product verification"
android:textAppearance="?android:textAppearanceMedium"
android:textColor="@color/green"/>
</TableRow>
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This product can be verified. Tap on the VERIFY PRODUCT button above."
android:textColor="@color/green"/>
</TableRow>
</TableLayout>
and this the result

as you can see, all the elements are messed up
and the images button disappear also when i set the gravity left the images disappear and the text stay where they are, nothing change.
This image shows what are the problems:

- How to make each text on a row.
- Set the image at the left (the gravity left didn’t work)
- How to draw a vertical line?
- How can i put image with the text?( i was using the span but it’s work just for one row here i have two text rows, is there anyway to merge two vertical cells).
- The images button disappear.
Thanks for any help.
I guess this should help you a bit understand how it works. I manage to do something that looks like what you might need
Try it out in your IDE and from that, if you need further helps, I’ll see what I can do.