<?xml version="1.0" encoding="utf-8"?>

<TableLayout android:id="@+id/MyLayout"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:stretchColumns="*"
    xmlns:android="http://schemas.android.com/apk/res/android" >

    <TableRow>

        <VideoView android:id="@+id/videoPlayer"
            android:layout_width="wrap_content"
            android:layout_height="200dp"
            />

    </TableRow>

    <TableRow>

        <Button android:id="@+id/playVideo"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:text="PlayVideo"
            android:onClick="PlayVideo"
            />

    </TableRow>

</TableLayout>