I'm not quite sure I understand the questions, however MyTracks for Android provides a good example code using a table layout. Here can be found here .
Thanks for the comment. I think this is what you are looking for: <TableLayout xmlns: android = "http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="3">
<TableRow>
<TextView
android:layout_column="1"
android:text="Open..."
android:padding="3dip" />
<TextView
android:text="Ctrl-O"
android:gravity="right"
android:padding="3dip" />
<TextView
android:text="String"
android:gravity="right"
android:padding="3dip" />
</TableRow> ...`
source
share