<?xml version="1.0" encoding="utf-8"?>
<TableLayout android:id="@+id/MyLayout"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:stretchColumns="1"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <TableRow>
        <ImageView android:id="@+id/imageView"
            android:layout_span="2"
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            android:src="@drawable/image1"
            android:padding="10dp"
            />
    </TableRow>

    <TableRow>
        <TextView
            android:id="@+id/T1"
            android:layout_height="50dp"
            android:layout_width="match_parent"
            android:gravity="left"
            android:paddingTop="10dp"
            android:layout_marginLeft="10dp"
            android:text="Move Image Vertically" />

        <SeekBar
            android:id="@+id/seekBar1"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            />

    </TableRow>


    <TableRow>
    <TextView
        android:id="@+id/T2"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:gravity="left"
        android:paddingTop="10dp"
        android:layout_marginLeft="10dp"
        android:text="Move Image Horizontally" />

        <SeekBar
            android:id="@+id/seekBar2"
            android:layout_height="50dp"
            android:layout_width="match_parent"
            />
    </TableRow>


    <TableRow>
        <TextView
            android:id="@+id/T3"
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            android:gravity="left"
            android:paddingTop="10dp"
            android:layout_marginLeft="10dp"
            android:text="Rotate Image" />

        <SeekBar
            android:id="@+id/seekBar3"
            android:layout_height="50dp"
            android:layout_width="match_parent"
            />
    </TableRow>


    <TableRow>
        <TextView
            android:id="@+id/T4"
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            android:gravity="left"
            android:paddingTop="10dp"
            android:layout_marginLeft="10dp"
            android:text="Set Alpha" />

        <SeekBar
            android:id="@+id/seekBar4"
            android:layout_height="50dp"
            android:layout_width="match_parent"
            />
    </TableRow>


</TableLayout>