A demo shows how to use TableLayout
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF"
android:stretchColumns="*"
android:splitMotionEvents="true"
android:overScrollMode="ifContentScrolls">
<!-- android:stretchColumns="1"-->
<TableRow>
<TextView
android:text="open"
android:padding="3dip"
/>
<TextView
android:text="ctrl-o"
android:padding="3dip"
android:gravity="right" />
</TableRow>
</TableLayout>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF"
android:stretchColumns="*"
android:splitMotionEvents="true"
android:overScrollMode="ifContentScrolls">
<!-- android:stretchColumns="1"-->
<TableRow>
<TextView
android:text="open"
android:padding="3dip"
/>
<TextView
android:text="ctrl-o"
android:padding="3dip"
android:gravity="right" />
</TableRow>
</TableLayout>